@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}
body * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

p {
  margin-bottom: 1.5em;
}
p:last-of-type {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

@media screen and (max-width: 1200px) {
  .only_pc {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .only_pc_md {
    display: none;
  }
}

.only_md {
  display: none;
}
@media screen and (max-width: 960px) {
  .only_md {
    display: block;
  }
}

.only_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only_sp {
    display: block;
  }
}

/* --------------------------------------------
 * 　基本幅A
 * -------------------------------------------- */
.blContainer {
  width: 92%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

/* --------------------------------------------
 * 　基本幅B
 * -------------------------------------------- */
.blContainer_lg {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/* --------------------------------------------
* 　サブページレイアウト（サイドバーあり）
* -------------------------------------------- */
.pageContainer {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .pageContainer {
    display: block;
  }
}
.pageContainer__main {
  flex: 1 1 620px;
  margin-right: 60px;
}
@media screen and (max-width: 960px) {
  .pageContainer__main {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.pageContainer__sidebar {
  flex: 1 1 280px;
}

/* --------------------------------------------
 * 　サブページヘッダー
 * -------------------------------------------- */
.subpageHeader {
  font-weight: bold;
  font-size: 1.6875rem;
  text-align: center;
  background: #EAF6FF;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .subpageHeader {
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .subpageHeader {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.25rem;
  }
}

/* --------------------------------------------
 * 　サブ2ページヘッダー
 * -------------------------------------------- */
.subpageHeader2 {
  text-align: center;
  background: #EAF6FF;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .subpageHeader2 {
    margin-top: 65px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .subpageHeader2 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.25rem;
  }
}

/* --------------------------------------------
 * 　パンクズ
 * -------------------------------------------- */
.breadcrumb {
  display: flex;
  list-style: none;
  font-size: 0.8125rem;
}
.breadcrumb__item::after {
  content: ">";
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}

/* --------------------------------------------
 * 　小見出し h4
 * -------------------------------------------- */
.thrdheading {
  font-weight: bold;
}

/* --------------------------------------------
 * 　小見出し h3
 * -------------------------------------------- */
.subheading {
  padding: 0.5rem 2rem;
  border-left: 4px solid #1593EF;
  background: #ddeeff;
  margin: 30px 0;
}
.subheading__text {
  font-size: 1.125rem;
}

/* --------------------------------------------
 * 　見出し 
 * -------------------------------------------- */
.heading {
  padding-bottom: 0.25em;
}
.heading__subText {
  font-size: 0.875rem;
  color: #1593EF;
}
.heading__mainText {
  display: inline-block;
  border-bottom: 1px dashed #1593EF;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 960px) {
  .heading__mainText {
    font-size: 1.375rem;
  }
}

.heading_center {
  text-align: center;
}

/* --------------------------------------------
* 　ページ大見出し
* -------------------------------------------- */
.pageContentHeading {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .pageContentHeading {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------
* 　ページ大見出しh3
* -------------------------------------------- */
.pageContentSecheading {
  padding: 1rem 2rem;
  border-left: 5px solid #1593EF;
  background: #f4f4f4;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .pageContentSecheading {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

/* --------------------------------------------
* 　水平テーブル
* -------------------------------------------- */
.horizontalTable {
  width: 100%;
}
.horizontalTable__header {
  text-align: left;
  white-space: nowrap;
  padding-right: 50px;
  padding-left: 3px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .horizontalTable__header {
    display: block;
    border-bottom: none;
    padding-top: 15px;
    padding-left: 0;
  }
}
.horizontalTable__data {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .horizontalTable__data {
    display: block;
    padding-top: 0;
    padding-bottom: 15px;
  }
}

/* --------------------------------------------
* 　角丸トリミング
* -------------------------------------------- */
.trimRounded {
  overflow: hidden;
  border-radius: 10px;
}

/* --------------------------------------------
* 　ラベル
* -------------------------------------------- */
.label {
  display: inline-block;
  padding: 0.2em 0.5em 0.1em;
  color: #fff;
  background: #EBB708;
  border-radius: 3px;
  white-space: nowrap;
}

.label_theme_seminar {
  background: #1593EF;
}

.label_theme_resident {
  background: #32cd32;
}

/* --------------------------------------------
* 　ボタン
* -------------------------------------------- */
.button {
  display: inline-block;
  padding: 0.7em 2.5em 0.6em 2em;
  border: 1px solid #a5a5a5;
  border-radius: 3px;
  background: #fff;
  position: relative;
  line-height: 1.4;
  transition: all ease 0.15s;
}
.button::after {
  content: "\f105";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  transition: all ease 0.15s;
}

.button_external::after {
  content: "\f08e";
}

.button:hover {
  background: #1593EF;
  border-color: #1593EF;
  color: #fff;
}
.button:hover::after {
  right: 0.25em;
  color: #fff;
}

.button_external:hover::after {
  right: 1em;
}

/* --------------------------------------------
 * 　ボタン２
 * -------------------------------------------- */
.button2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 450px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .button2 {
    width: 300px;
    padding: 0.6em 2em;
  }
}

.button2::before {
  position: absolute;
  right: calc(2em + 2.5px);
  transform: translateX(50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.button2::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 3px solid #2589d0;
  border-right: 3px solid #2589d0;
  content: "";
}

/* --------------------------------------------
 * 　カード
 * -------------------------------------------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}
@media screen and (max-width: 767px) {
  .cards {
    display: block;
    margin-bottom: 0;
  }
}

.cards_col3 .cards__item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .cards_col3 .cards__item {
    width: 100%;
    margin-right: 0;
  }
  .cards_col3 .cards__item:last-child {
    margin-bottom: 0;
  }
}
.cards_col3 .cards__item:nth-child(3n) {
  margin-right: 0;
}

.card {
  list-style: none;
}
.card__link {
  display: block;
}
.card__link:hover .card__title {
  text-decoration: underline;
}
.card__link > *:last-child {
  margin-bottom: 0;
}
.card__imgWrapper {
  margin-bottom: 10px;
}
.card__img {
  width: 100%;
  transition: all ease 0.3s;
}
.card__date {
  font-size: 0.75rem;
  color: #555;
}
.card__title {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.card__description {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card__link:hover .card__img {
  transform: scale(1.2);
}

/* --------------------------------------------
 * 　サイドバーのコンテンツブロック
 * -------------------------------------------- */
.sidebarBlock {
  border: 2px solid #C2D6E5;
  border-radius: 10px;
  padding: 25px;
}
.sidebarBlock__heading {
  font-weight: bold;
  color: #1593EF;
  margin-bottom: 5px;
  font-size: 1.125rem;
}
.sidebarBlock__heading i {
  margin-right: 5px;
}
.sidebarBlock__text {
  font-size: 0.9375rem;
}
.sidebarBlock__list {
  list-style: none;
}
.sidebarBlock__item {
  display: block;
  padding: 10px 3px 6px;
  border-bottom: 1px dotted #bebebe;
}

/* --------------------------------------------
* 　表組みのコンテンツブロック
* -------------------------------------------- */
.tableBlock {
  border: 2px solid #C2D6E5;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
.tableBlock__heading {
  font-weight: bold;
  color: #1593EF;
  margin-bottom: 5px;
  font-size: 1.125rem;
}

/* --------------------------------------------
 * 　プログラムテーブル
 * -------------------------------------------- */
.programTable {
  width: 100%;
}
.programTable__header {
  color: #1593EF;
  text-align: left;
  white-space: nowrap;
  padding-right: 50px;
  padding-left: 3px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .programTable__header {
    display: block;
    border-bottom: none;
    padding-top: 15px;
    padding-left: 0;
  }
}
.programTable__data {
  width: 100%;
  padding-top: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .programTable__data {
    display: block;
    padding-top: 0;
    padding-bottom: 15px;
  }
}

/* --------------------------------------------
 * 　ページャー
 * -------------------------------------------- */
.navigation.pagination {
  margin-top: 30px;
}

.navigation.pagination .nav-links .prev {
  border: none !important;
}

.navigation.pagination .nav-links .next {
  border: none !important;
}

.navigation.pagination .nav-links .current {
  padding: 6px 11px;
  background: #1593EF;
  border: 1px solid #1593EF;
  border-radius: 3px;
  color: #ffffff;
}

.navigation.pagination .nav-links a {
  padding: 6px 11px;
  border: 1px solid #1593EF;
  border-radius: 3px;
}

.navigation.pagination .nav-links a:hover {
  background: #1593EF;
  border: 1px solid #1593EF;
  color: #ffffff;
}

/* --------------------------------------------
 * 　ヘッダー
 * -------------------------------------------- */
.header {
  display: flex;
}
@media screen and (max-width: 960px) {
  .header {
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    z-index: 9999;
    background: #fff;
  }
}
.header__title {
  margin-top: 1px;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .header__title {
    margin-top: 5px;
  }
}
@media screen and (max-width: 960px) {
  .header__pcMenu {
    display: none;
  }
}
.header__spMenu {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__spMenu {
    display: block;
  }
}

.siteTitle__tagLine {
  font-size: 0.6875rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .siteTitle__tagLine {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .siteTitle__logo {
    display: inline-block;
    width: 200px;
    margin-bottom: 5px;
  }
}

.pcMenu__sub {
  margin-bottom: 15px;
}

.subMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.subMenu__info {
  display: flex;
}
.subMenu__infoLink {
  width: 115px;
  margin-right: 10px;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #1593EF;
  border-top: none;
  border-radius: 0 0 5px 5px;
  background: #1593EF;
  color: #fff;
  transition: all ease 0.15s;
}
.subMenu__infoLink:hover {
  background: #fff;
  color: #1593EF;
}
.subMenu__infoLink2 {
  width: 115px;
  margin-right: 10px;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #32cd32;
  border-top: none;
  border-radius: 0 0 5px 5px;
  background: #32cd32;
  color: #fff;
  transition: all ease 0.15s;
}
.subMenu__infoLink2:hover {
  background: #fff;
  color: #32cd32;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/
.mainMenu {
  margin-bottom: 15px;
}
.mainMenu__label {
  color: #1593EF;
  font-size: 0.625rem;
  text-align: center;
}

.gnavi__wrap {
  width: 700px;
  margin: 0 auto 10px;
}

.gnavi__lists {
  display: flex;
  justify-content: flex-end;
}

.gnavi__list {
  display: block;
  width: 160px;
  height: 60px;
  position: relative;
  transition: all 0.3s;
  margin-right: 10px;
  border-bottom: 2px solid #C2D6E5;
}

.gnavi__list:hover {
  border-bottom: 2px solid #00008b;
}

.gnavi__list:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.gnavi__list a {
  position: relative;
  display: inline-block;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.3s;
}

.gnavi__list:hover .child a {
  color: #fff;
}

.dropdown__lists {
  list-style-type: none;
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
}

.dropdown__list {
  background-color: #28BFE7;
  width: 260px;
  height: 60px;
  transition: all 0.3s;
  position: relative;
  z-index: 9999;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #3577ca;
  display: block;
  z-index: 9999;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*==960px以下の形状*/
#acd-menu dt {
  position: relative;
  height: 60px;
  line-height: 60px;
  padding: 0 30px 0 30px;
  background-color: #EAF6FF;
  border-bottom: 1px solid #ccc;
  font-size: 1.125rem;
  color: #666;
  text-align: center;
}

#acd-menu dt::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #d1c8c3;
}

#acd-menu .open::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #d1c8c3;
}

#acd-menu > li > dl > dt:only-child::before {
  content: none;
}

#acd-menu dd ul li {
  list-style: none;
}

#acd-menu dd ul li a {
  display: block;
  position: relative;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 30px 0 30px;
  background-color: #28BFE7;
  border-bottom: 1px solid #eee;
  font-size: 1.125rem;
  color: #fff;
}

#acd-menu dd ul li a::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #fff;
}

nav {
  position: relative;
  z-index: 999;
}

/* --------------------------------------------
 * 　ハンバーガーメニュー
 * -------------------------------------------- */
.spMenu__toggle {
  position: absolute;
  top: -200px;
}
.spMenu__toggle:checked ~ .spMenu__wrapper {
  display: block;
}
.spMenu__toggle:focus-visible ~ .spMenu__hamburger {
  box-shadow: 1px 1px 2px gray;
}
.spMenu__toggle:checked ~ .spMenu__hamburger .spMenu__hamburgerLine {
  background: transparent;
}
.spMenu__toggle:checked ~ .spMenu__hamburger .spMenu__hamburgerLine::before {
  top: 50%;
  transform: rotate(45deg);
}
.spMenu__toggle:checked ~ .spMenu__hamburger .spMenu__hamburgerLine::after {
  top: 50%;
  transform: rotate(-45deg);
}
.spMenu__hamburger {
  width: 42px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 20px;
}
.spMenu__hamburgerLine {
  display: block;
  width: 42px;
  height: 2px;
  background: #1593EF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.spMenu__hamburgerLine::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 100%;
  height: 2px;
  background: #1593EF;
}
.spMenu__hamburgerLine::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #1593EF;
}
.spMenu__wrapper {
  display: none;
  overflow-y: scroll;
  height: calc(100vh - 65px);
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 25px 4%;
  background: #EAF6FF;
}

/* --------------------------------------------
 * 　スマホサブメニュー
 * -------------------------------------------- */
.subSpMenu {
  margin-top: 30px;
}
.subSpMenu__recruitLink {
  display: block;
  color: #fff;
  text-align: center;
  background: #06c755;
  padding: 0.8em 0 0.6em;
  border-radius: 3px;
  margin-bottom: 3%;
}
.subSpMenu__hos {
  display: flex;
  justify-content: space-between;
}
.subSpMenu__hosLink {
  width: 48.5%;
  color: #fff;
  text-align: center;
  background: #1593EF;
  padding: 0.8em 0 0.6em;
  border-radius: 3px;
}

.subpageimg__img {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .subpageimg__img {
    width: 767px;
    height: 65px;
    margin: auto;
  }
}

/* --------------------------------------------
 * 　main
 * -------------------------------------------- */
@media screen and (max-width: 960px) {
  .toppageMain {
    margin-top: 65px;
  }
}

/* --------------------------------------------
 * 　キービジュアル
 * -------------------------------------------- */
.keyVisual {
  width: 100%;
  padding-top: 0;
  position: relative;
}
.keyVisual__catch {
  position: absolute;
  top: 200px;
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .keyVisual__catch {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .keyVisual__catch {
    font-size: 2.25rem;
  }
}
.keyVisual__catch span {
  color: #1593EF;
}

/* --------------------------------------------
 * 　LINEスティッキーバナー
 * -------------------------------------------- */
.recruitBanner {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9998;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
  letter-spacing: 0.3em;
  padding: 40px 7px;
  background: #EBB708;
  font-size: 1.25rem;
  border-radius: 10px 0 0 10px;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .recruitBanner {
    top: unset;
    bottom: 0;
    transform: translateY(0);
    writing-mode: horizontal-tb;
    padding: 7px 0 0;
    height: 40px;
    font-size: 1rem;
    width: 100%;
    border-radius: 0;
    text-align: center;
  }
}

/* --------------------------------------------
 * 　お知らせ
 * -------------------------------------------- */
.newsBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .newsBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.newsBlock__heading {
  margin-top: 20px;
  margin-bottom: 30px;
}
.newsBlock__list {
  margin-bottom: 35px;
}
.newsBlock__link {
  text-align: center;
}
.newsBlock__category {
  text-align: center;
}
.newsBlock .newsContent__tab {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.newsBlock .newsContent__tab li {
  width: 150px;
  text-align: center;
  color: #F3AA66;
  border: 1px solid #F3AA66;
  border-radius: 3px;
  padding: 3px 5px;
  margin-right: 10px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .newsBlock .newsContent__tab li {
    font-size: 0.875rem;
    padding: 1px 2px;
    margin-right: 2px;
  }
  .newsBlock .newsContent__tab li:last-child {
    margin-right: 0;
  }
}
.newsBlock .newsContent__tab li.selected {
  background-color: #F3AA66;
  color: white;
}
.newsBlock .newsContent__tab li.semi {
  background-color: #1593EF;
  color: #fff;
  border: none;
}
.newsBlock .newsContent__tab li.ado {
  background-color: #59c197;
  color: #fff;
  border: none;
}
.newsBlock .newsContent__tab li.tra {
  background-color: #EBB708;
  color: #fff;
  border: none;
}

.tab-content .tab-pane {
  display: none;
  padding: 20px;
}

.tab-content .tab-pane.selected {
  display: block;
}

.category__list {
  width: auto;
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.category__item {
  margin-right: 20px;
}
.category__item a {
  color: #fff;
}

.newsList {
  list-style: none;
}
.newsList__link {
  display: flex;
  align-items: flex-start;
  padding: 0.8em 2px 0.3em;
  border-bottom: 1px dotted #a5a5a5;
}
@media screen and (max-width: 767px) {
  .newsList__link {
    flex-wrap: wrap;
  }
}
.newsList__link:hover .newsList__title {
  text-decoration: underline;
}
.newsList__date {
  margin-right: 25px;
}
.newsList__label {
  margin-right: 10px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .newsList__label {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .newsList__title {
    width: 100%;
  }
}
.newsList__cat {
  margin-bottom: 3px;
  margin-right: 15px;
  display: inline-block;
}
.newsList__cat span {
  font-size: 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 3px 5px 1px;
  display: inline-block;
  margin-right: 5px;
  white-space: nowrap;
}
.newsList__cat span.seminar {
  background: #1593EF;
  color: #fff;
}
.newsList__cat span.adoption {
  background: #59c197;
  color: #fff;
}
.newsList__cat span.training {
  background: #EBB708;
  color: #fff;
}

/* --------------------------------------------
 * 　information
 * -------------------------------------------- */
.infoBlock {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #00008b;
}
@media screen and (max-width: 767px) {
  .infoBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.infoBlock__heading {
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
}
.infoBlock span {
  color: #28BFE7;
  font-size: 1.375rem;
}

.infoContent__textArea {
  flex: 1 1 30%;
}
.infoContent__imgArea {
  position: relative;
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  .infoContent__imgArea {
    padding-left: 0;
  }
}
.infoContent__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .infoContent__list {
    flex-direction: column;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .infoContent__item {
    margin: 0 auto 20px;
  }
}
.infoContent__link {
  display: inline-block;
  position: relative;
  transition: opacity 0.3s ease-in-out;
  border: 2px solid #fff;
}
.infoContent__content {
  position: relative;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}
.infoContent__content:hover {
  opacity: 1;
}
.infoContent__text {
  position: absolute;
  top: 80%;
  left: 40%;
  transform: translate(-50%, -50%);
  /* テキストのスタイルを設定 */
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  /* 他のスタイルを追加 */
}
.infoContent__text::after {
  content: "\f061";
  font-size: 16px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-align: center;
  line-height: 48px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: 0.3s;
}
.infoContent__text2 {
  position: absolute;
  top: 80%;
  left: 40%;
  transform: translate(-50%, -50%);
  /* テキストのスタイルを設定 */
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  /* 他のスタイルを追加 */
}
.infoContent__text2::after {
  content: "\f061";
  font-size: 16px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-align: center;
  line-height: 48px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: 0.3s;
}

.button-001 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  font-size: 1em;
}

/* --------------------------------------------
 * 　あいさつ
 * -------------------------------------------- */
.floatBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .floatBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.floatBlock__img {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 480px;
  width: 50vw;
}
@media screen and (max-width: 767px) {
  .floatBlock__img {
    float: none;
    display: block;
    max-width: 767px;
    width: 92vw;
    margin: 0 0 20px 0;
  }
}
.floatBlock__end {
  clear: both;
  padding-bottom: 20px;
}
.floatBlock__heading {
  margin-bottom: 20px;
}

.leader_name {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: right;
}
.leader_name span {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .leader_name {
    font-size: 1.125rem;
  }
}

/*PCでは無効（改行しない）*/
.sma {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 767px) {
  .sma {
    display: block;
  }
}
/* --------------------------------------------
 * 　サービス（私たちができること）
 * -------------------------------------------- */
.serviceBlock {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #EAF6FF;
}
@media screen and (max-width: 767px) {
  .serviceBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.serviceBlock__inner > *:last-child {
  margin-bottom: 0;
}
.serviceBlock__heading {
  margin-bottom: 50px;
}
.serviceBlock__content {
  margin-bottom: 60px;
}

.serviceContent {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .serviceContent {
    flex-direction: column-reverse;
  }
}
.serviceContent__textArea {
  flex: 1 1 50%;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .serviceContent__textArea {
    margin-right: 0;
    text-align: center;
  }
}
.serviceContent__imgArea {
  flex: 1 1 calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .serviceContent__imgArea {
    width: 100%;
    margin-bottom: 15px;
  }
}
.serviceContent__movieArea {
  width: 100%;
  aspect-ratio: 16/9;
}
.serviceContent__heading {
  font-size: 1.625rem;
  color: #1593EF;
  border-bottom: 1px solid #1593EF;
  margin-bottom: 25px;
}
.serviceContent__miniheading {
  font-weight: bold;
  font-size: 1.5rem;
  color: #555555;
  position: relative;
  padding: 1.5rem 2rem 1.2rem 80px;
}
@media screen and (max-width: 767px) {
  .serviceContent__miniheading {
    font-size: 1.25rem;
  }
}
.serviceContent__miniheading span {
  font-family: "Roboto", sans-serif;
  color: #00008b;
  font-size: 3rem;
  padding-right: 50px;
  line-height: 1;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
.serviceContent__text:last-of-type {
  margin-bottom: 0.5em;
}
.serviceContent__labels {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .serviceContent__labels {
    justify-content: center;
  }
}
.serviceContent__label {
  margin-right: 10px;
  margin-bottom: 10px;
}

.serviceContent_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .serviceContent_reverse {
    flex-direction: column-reverse;
  }
}
.serviceContent_reverse .serviceContent__textArea {
  margin-right: 0;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .serviceContent_reverse .serviceContent__textArea {
    margin-left: 0;
  }
}

.subserviceBlock {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #EAF6FF;
}
@media screen and (max-width: 767px) {
  .subserviceBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.subserviceBlock__inner > *:last-child {
  margin-bottom: 0;
}
.subserviceBlock__heading {
  margin-bottom: 50px;
}
.subserviceBlock__content {
  margin-bottom: 60px;
}

.subserviceContent {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subserviceContent {
    flex-direction: column-reverse;
  }
}
.subserviceContent__textArea {
  flex: 1 1 50%;
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .subserviceContent__textArea {
    margin-right: 0;
  }
}
.subserviceContent__imgArea {
  flex: 1 1 calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .subserviceContent__imgArea {
    margin-bottom: 15px;
  }
}
.subserviceContent__heading {
  font-size: 1.625rem;
  color: #1593EF;
  border-bottom: 1px solid #1593EF;
  margin-bottom: 25px;
}
.subserviceContent__text:last-of-type {
  margin-bottom: 0.5em;
}
.subserviceContent__labels {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .subserviceContent__labels {
    justify-content: center;
  }
}
.subserviceContent__label {
  margin-right: 10px;
  margin-bottom: 10px;
}
.subserviceContent__item {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}
.subserviceContent__item a:link {
  text-decoration: underline;
}
.subserviceContent__item a:hover {
  color: #3366ff;
}
.subserviceContent__point {
  list-style: none;
  position: relative;
  padding-left: 0.6em;
}
.subserviceContent__point::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  content: "";
  background: #EBB708;
}

/* --------------------------------------------
 * 　コラム
 * -------------------------------------------- */
.columnBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .columnBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.columnBlock__heading {
  margin-bottom: 35px;
}
.columnBlock__button {
  margin-top: 35px;
  text-align: center;
}

/* --------------------------------------------
 * 　VOICE情報
 * -------------------------------------------- */
.voiceBlock {
  padding-top: 0;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .voiceBlock {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.voiceBlock__heading {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.voiceBlock__headingInner {
  font-size: 1.5rem;
  display: inline-block;
  background: #1593EF;
  border-radius: 35px;
  padding: 8px 60px 6px;
  border: 2px solid #fff;
  color: #fff;
  line-height: 1.3;
}
.voiceBlock__headingLabel {
  font-size: 0.875rem;
}
.voiceBlock__voiceWrapper {
  display: flex;
  margin-top: -35px;
}
@media screen and (max-width: 767px) {
  .voiceBlock__voiceWrapper {
    display: block;
    margin-top: 30px;
    margin-bottom: -20px;
  }
}
.voiceBlock__voiceItem {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.voiceInfo {
  border-radius: 0 0 0 60px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voiceInfo {
    border-radius: 60px 0 0 60px;
    margin-right: -4.347826087%;
    margin-bottom: 20px;
  }
}
.voiceInfo__img {
  width: 100%;
}
.voiceInfo__textArea {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #EAF6FF;
  padding: 30px 30px 35px;
}
@media screen and (max-width: 767px) {
  .voiceInfo__textArea {
    padding: 20px;
  }
}
.voiceInfo__title {
  font-weight: bold;
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 30px;
}
.voiceInfo__table {
  margin-bottom: auto;
}
.voiceInfo__tableHeader {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 20px;
  text-align: left;
}
.voiceInfo__tableDate {
  font-size: 0.9375rem;
}
.voiceInfo__linkWrapper {
  text-align: center;
  margin-top: 30px;
}

.voiceInfo_v2 {
  border-radius: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  .voiceInfo_v2 {
    border-radius: 0 60px 60px 0;
    margin-right: 0;
    margin-left: -4.347826087%;
  }
}
.voiceInfo_v2 .voiceInfo__textArea {
  background: #FCF3D7;
}

/* --------------------------------------------
 * 　CTA
 * -------------------------------------------- */
.ctaBlock__img {
  background: url("../img/cta02.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .ctaBlock__img {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.ctaBlock__wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .ctaBlock__wrapper {
    flex-direction: column;
  }
}
.ctaBlock__form {
  display: flex;
  flex-direction: column;
  margin: 3rem;
  width: 400px;
  height: 220px;
  padding: 20px;
  text-align: center;
  color: #2c2c2c;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .ctaBlock__form {
    margin: 2rem;
    width: 300px;
    height: 170px;
  }
}
.ctaBlock__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .ctaBlock__title {
    margin-bottom: 0;
  }
}
.ctaBlock__formName {
  background: #06c755;
  padding: 1em;
  color: #fff;
  border-radius: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ctaBlock__formName {
    padding: 0.1em;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.ctaBlock__formName2 {
  background: #1593EF;
  padding: 1em;
  color: #fff;
  border-radius: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ctaBlock__formName2 {
    padding: 0.1em;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.ctaBlock__discription {
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .ctaBlock__discription {
    margin-bottom: 10px;
  }
}

/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
.footer {
  margin-top: 100px;
  padding-top: 30px;
  padding-bottom: 10px;
  background: #EAF6FF;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 50px;
  }
}
.footer__title {
  text-align: center;
  margin-bottom: 30px;
}
.footer__ft {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .footer__ft {
    width: 108.6956521739%;
    margin-left: -4.347826087%;
  }
}
.footer__ftList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8125rem;
}
.footer__ftItem {
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__ftItem {
    width: 50%;
    padding: 1em 0;
    text-align: center;
    border-top: 1px solid #C2D6E5;
  }
  .footer__ftItem:nth-child(odd) {
    border-right: 1px solid #C2D6E5;
  }
  .footer__ftItem:nth-last-child(2) {
    border-bottom: 1px solid #C2D6E5;
  }
  .footer__ftItem:nth-last-child(3) {
    border-bottom: 1px solid #C2D6E5;
  }
  .footer__ftItem:last-child {
    border: none;
  }
}
.footer__ftItem::after {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #C2D6E5;
}
@media screen and (max-width: 767px) {
  .footer__ftItem::after {
    display: none;
  }
}
.footer__ftItem:first-child:before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #C2D6E5;
}
@media screen and (max-width: 767px) {
  .footer__ftItem:first-child:before {
    display: none;
  }
}
.footer__ftLink {
  display: block;
  color: #555;
}
.footer__ftLink:hover {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  color: #777;
  font-size: 0.6875rem;
}

@media screen and (max-width: 767px) {
  .toppageFooter {
    margin-bottom: 40px;
  }
}

/* --------------------------------------------
 * 　地域情報
 * -------------------------------------------- */
.placeinfoTable {
  margin-bottom: 30px;
}

.accessMap {
  position: relative;
  margin-bottom: 20px;
}
.accessMap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.accessMap__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accessMapLink {
  margin-bottom: 40px;
}

.hosGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.hosGallery__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hosGallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* --------------------------------------------
 * お問い合わせ
 * -------------------------------------------- */
.contact__item {
  padding: 10px;
  border: 1px solid #ddd;
}
.contact__item :first-child {
  background: #eee;
}

input[type=checkbox] {
  margin-right: 10px;
}
input[type=checkbox]:nth-child(2) {
  margin-right: 4px;
}

input[type=radio] {
  display: inline-block;
  margin-right: 10px; /* ボタン間の間隔（必要に応じて調整） */
}

/* --------------------------------------------
* 　FAQ
* -------------------------------------------- */
.faqBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .faqBlock {
    padding-bottom: 50px;
  }
}

.faq > *:last-child {
  margin-bottom: 0;
}

.faq__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
  min-height: 45px;
  padding-left: 60px;
}
.faq__row--question {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
}

.faq__question--text {
  padding-top: 12px;
}

.faq__row--answer {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: normal;
  line-height: 45px;
  text-align: center;
}
.faq__icon--question {
  background-color: #e25c00;
  color: #fff;
}
.faq__icon--answer {
  background-color: #1593EF;
  color: #fff;
}

.faq__answer-body > *:last-child {
  margin-bottom: 0;
}

.faq__answer-text {
  margin-bottom: 20px;
}

/* --------------------------------------------
 * 　タイムスケジュール
 * -------------------------------------------- */
.scheduleBlock {
  padding-bottom: 70px;
}

.time-schedule * {
  margin: 0;
  padding: 0;
  line-height: 1.3em;
}

.time-schedule {
  list-style: none;
  margin: 0 auto 0 4em;
  padding-left: 20px;
  border-left: 6px solid #00008b;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 15px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
  color: #00008b;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  background: #00008b;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time-schedule .sch_box {
  display: inline-block;
  width: 100%;
  margin-left: 30px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  background: #EAF6FF;
  box-sizing: border-box;
  border-radius: 6px;
}

.time-schedule .sch_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.time-schedule .sch_tx {
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
}

/* --------------------------------------------
 * 　サイドバー
 * -------------------------------------------- */
.sidebar > *:last-child {
  margin-bottom: 0;
}
.sidebar__block {
  margin-bottom: 20px;
}

.pickups__item {
  padding-top: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #ccc;
}
.pickups__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* --------------------------------------------
 * スライダー
 * -------------------------------------------- */
/* 全体設定 */
.css-carousel-slider {
  width: 100%;
  /* max-width: 800px */ /* サイズ設定をする場合はここ(*1) */
  overflow: hidden;
  position: relative;
}

.css-carousel-slider img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider .slide-wrap {
  width: 400%; /* 画像の合計数*100%を設定(*2) */
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-animation: css-carousel-slider 20s infinite;
          animation: css-carousel-slider 20s infinite; /* スライダーアニメーション全体の時間(*3) */
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /* スライダーが始まるまでの時間(*4) */
}

.css-carousel-slider .slide-wrap-main {
  width: 100%;
  z-index: 1;
  -webkit-animation: css-carousel-slider-main 20s infinite;
          animation: css-carousel-slider-main 20s infinite; /* (*3)と同じ内容を設定 */
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /* (*4)と同じ内容を設定 */
}

.css-carousel-slider .slide {
  width: 100%;
}

/* スライダーアニメーションの設定(*5) */
@-webkit-keyframes css-carousel-slider {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-25%);
  }
  25% {
    transform: translateX(-25%);
  }
  45% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(-50%);
  }
  70% {
    transform: translateX(-75%);
  }
  75% {
    transform: translateX(-75%);
  }
  95% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes css-carousel-slider {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-25%);
  }
  25% {
    transform: translateX(-25%);
  }
  45% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(-50%);
  }
  70% {
    transform: translateX(-75%);
  }
  75% {
    transform: translateX(-75%);
  }
  95% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes css-carousel-slider-main {
  0% {
    transform: translateX(100%);
  }
  75% {
    transform: translateX(100%);
  }
  95% {
    transform: translateX(0%);
  }
}
@keyframes css-carousel-slider-main {
  0% {
    transform: translateX(100%);
  }
  75% {
    transform: translateX(100%);
  }
  95% {
    transform: translateX(0%);
  }
}
.caption {
  text-align: center;
}

/* --------------------------------------------
* sptoggle
* -------------------------------------------- */
.secSpMenu__list {
  display: none;
}

/* --------------------------------------------
* go_top
* -------------------------------------------- */
html {
  scroll-behavior: smooth;
}

#go_top {
  visibility: hidden;
  height: 50px;
  width: 50px;
  background: #fff;
  border: solid 2px #1593EF;
  border-radius: 50%;
  text-decoration: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: all ease 0.3s;
}

.go_top__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #1593EF;
  border-right: 3px solid #1593EF;
  transform: translateY(20%) rotate(-45deg);
}

#go_top.visible {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------------------
 * 　 サブヘッダー
 * -------------------------------------------- */
.subheaderBlock__img {
  background: url("../img/resident1.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.subheaderBlock__title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  margin: 50px;
}
@media screen and (max-width: 1200px) {
  .subheaderBlock__title {
    font-size: 1.375rem;
    margin: 30px;
  }
}

.subheaderBlock2__img {
  background: url("../img/sr_resident1.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.subheaderBlock2__title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  margin: 50px;
}
@media screen and (max-width: 1200px) {
  .subheaderBlock2__title {
    font-size: 1.375rem;
    margin: 30px;
  }
}

.subheaderBlock3__img {
  background: url("../img/student1.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.subheaderBlock3__title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  margin: 50px;
}
@media screen and (max-width: 1200px) {
  .subheaderBlock3__title {
    font-size: 1.375rem;
    margin: 30px;
  }
}

.subheaderBlock4__img {
  background: url("../img/contact1.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.subheaderBlock4__title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  margin: 50px;
}
@media screen and (max-width: 1200px) {
  .subheaderBlock4__title {
    font-size: 1.375rem;
    margin: 30px;
  }
}

/* --------------------------------------------
 * 　プログラム：サブページヘッダー:before
 * -------------------------------------------- */
.titleHeader__text {
  position: relative;
}
.titleHeader__text::before {
  left: 360px;
  top: 20px;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .titleHeader__text::before {
    left: 180px;
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .titleHeader__text::before {
    left: 20px;
    top: 10px;
  }
}

.proguram__heading {
  position: relative;
}

.icon_text {
  background-image: url(../img/ugh.png);
  width: 130px;
  height: 114px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px; /* 画像とテキストの間隔を調整 */
}

.icon_text:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}

.featuresBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .featuresBlock {
    padding-bottom: 50px;
  }
}
.featuresBlock__inner > *:last-child {
  margin-bottom: 0;
}
.featuresBlock__heading {
  margin-bottom: 50px;
}
.featuresBlock__content {
  margin-bottom: 60px;
}

.featuresContent__listbox {
  list-style-position: inside;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .featuresContent__textArea {
    margin-right: 0;
  }
}
.featuresContent__heading {
  font-size: 1.625rem;
  color: #1593EF;
  border-bottom: 1px solid #1593EF;
  margin-bottom: 25px;
}
.featuresContent__miniheading {
  font-weight: bold;
  font-size: 1.5rem;
  color: #555555;
  position: relative;
  padding: 1.5rem 2rem 1.2rem 80px;
}
@media screen and (max-width: 767px) {
  .featuresContent__miniheading {
    font-size: 1.25rem;
  }
}
.featuresContent__miniheading span {
  font-family: "Roboto", sans-serif;
  color: #00008b;
  font-size: 3rem;
  padding-right: 50px;
  line-height: 1;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
.featuresContent__text:last-of-type {
  margin-bottom: 0.5em;
}

.mokujiBlock {
  margin-top: 30px;
}

.mokujiContent__inner {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .mokujiContent__inner {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.mokujiContent__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-left: 40px;
}
@media screen and (max-width: 960px) {
  .mokujiContent__title {
    margin-left: 0;
  }
}
.mokujiContent__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  align-items: stretch;
}
.mokujiContent__item {
  list-style: none;
  width: calc(33.33% - 40px);
  margin-left: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .mokujiContent__item {
    margin-left: 0;
    width: 100%;
  }
}
.mokujiContent__link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px 25px 12px 0;
  border-bottom: #ccc dotted 1px;
}
.mokujiContent__link::after {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #28BFE7;
  content: "";
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
}
.mokujiContent__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.mokujiContent__link .fa-solid {
  position: absolute;
  top: 34%;
  right: 0;
  color: #1593EF;
}

/* --------------------------------------------
 * 　プログラム：研修
 * -------------------------------------------- */
.trainingBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .trainingBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.trainingBlock__inner > *:last-child {
  margin-bottom: 0;
}
.trainingBlock__heading {
  margin-bottom: 50px;
}
.trainingBlock__content {
  margin-bottom: 60px;
}

.trainingContent {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .trainingContent {
    flex-direction: column-reverse;
  }
}
.trainingContent__textArea {
  flex: 1 1 50%;
}
@media screen and (max-width: 767px) {
  .trainingContent__textArea {
    margin-right: 0;
    text-align: center;
  }
}
.trainingContent__imgArea {
  flex: 1 1 calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .trainingContent__imgArea {
    width: 100%;
    margin-bottom: 15px;
  }
}
.trainingContent__movieArea {
  width: 100%;
  aspect-ratio: 16/9;
}
.trainingContent__heading {
  font-size: 1.625rem;
  color: #1593EF;
  border-bottom: 1px solid #1593EF;
  margin-bottom: 25px;
}
.trainingContent__miniheading {
  font-weight: bold;
  position: relative;
  padding: 1.5rem 2rem 1.2rem 80px;
}
.trainingContent__miniheading span {
  font-family: "Roboto", sans-serif;
  color: #00008b;
  font-size: 3rem;
  padding-right: 50px;
  line-height: 1;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
.trainingContent__text:last-of-type {
  margin-bottom: 0.5em;
}
.trainingContent__labels {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .trainingContent__labels {
    justify-content: center;
  }
}
.trainingContent__label {
  margin-right: 10px;
  margin-bottom: 10px;
}

.serviceContent_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .serviceContent_reverse {
    flex-direction: column-reverse;
  }
}
.serviceContent_reverse .serviceContent__textArea {
  margin-right: 0;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .serviceContent_reverse .serviceContent__textArea {
    margin-left: 0;
  }
}

/* --------------------------------------------
 * 　プログラム：タブ
 * -------------------------------------------- */
.tab_container {
  padding-bottom: 1em;
  background-color: #fff;
  margin: 0 auto;
}

.tab_item {
  width: 40%;
  margin-right: 5%;
  padding: 15px 0;
  border-radius: 25px 25px 25px 25px;
  background-color: #ececec;
  text-align: center;
  color: #2589d0;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .tab_item {
    padding: 5px 0;
  }
}

.tab_item:hover {
  opacity: 0.75;
}

input[name=tab_item] {
  display: none;
}

.tab_content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}

#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content {
  display: block;
}

.tab_container input:checked + .tab_item {
  background-color: #2589d0;
  color: #fff;
}

/* --------------------------------------------
 * 　プログラム：画像横並び
 * -------------------------------------------- */
.schedulContent__list {
  max-width: 960px;
  display: flex;
  list-style: none;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .schedulContent__list {
    display: block;
  }
}
.schedulContent__item {
  width: 90%;
  margin-right: 20px;
}
.schedulContent__item :last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .schedulContent__item {
    width: 100%;
    margin: auto;
  }
}

/* --------------------------------------------
 * 　プログラム：テーブル２
 * -------------------------------------------- */
.scheduleBlock {
  display: block;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .scheduleBlock {
    margin-bottom: 0;
    flex-direction: column;
  }
  .scheduleBlock__textArea {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .scheduleBlock__textArea {
    margin-right: 0;
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 767px) {
  .scheduleBlock__imgArea {
    display: flex;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .scheduleBlock__imgArea {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
    flex: 1 1 auto;
  }
}

.table2Block {
  text-align: left;
  line-height: 1.7;
}
.table2Block__content {
  width: 100%;
}
.table2Block__th {
  width: 80px;
  padding: 20px 17px;
  border: 1px solid gray;
  background: #e6eaef;
}
.table2Block__td {
  padding: 20px 17px;
  border: 1px solid gray;
}
.table2Block__tr {
  background: #fff;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0.05em;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.table2Block__item {
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.table2Block__item::before {
  content: "●";
  color: rgb(230, 230, 230);
  position: absolute;
  left: 0px;
  top: 0px;
}

.tabimg {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .tabimg {
    margin-top: 30px;
  }
}

.frame {
  border: 1px solid #666;
}

/* --------------------------------------------
 * 　アコーディオン
 * -------------------------------------------- */
.kensyuBlock {
  margin-bottom: 70px;
}

.accordion {
  max-width: 960px;
  margin-bottom: 7px;
  border: 2px solid #2589d0;
  border-radius: 5px;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%232589d0%3B%22%2F%3E%0A%3C%2Fsvg%3E");
  background-position: right calc(2em - 7px) center;
  background-size: 22px;
  background-repeat: no-repeat;
  font-size: 1.125rem;
  color: #2589d0;
  font-weight: 600;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  right: calc(2em + 2.5px);
  width: 3px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  content: "";
}

.accordion summary::before {
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate 0.3s;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion[open] p {
  transform: none;
  opacity: 1;
}

.accordionsBlock {
  padding: 40px 0;
}

.accordionsBlock__textArea {
  list-style-position: inside;
  text-align: left;
  max-width: 870px;
}
.accordionsBlock__item {
  padding: 0.3em 2em 1.5em;
}

.accordionsBlock2__textArea {
  list-style-position: inside;
  text-align: left;
}
.accordionsBlock2__list {
  padding: 0 50px 0 30px;
}
@media screen and (max-width: 767px) {
  .accordionsBlock2__list {
    padding: 0 10px 0 10px;
  }
}
.accordionsBlock2__item {
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.accordionsBlock2__item::before {
  content: "●";
  color: rgb(230, 230, 230);
  position: absolute;
  left: 0px;
  top: 0px;
}
.accordionsBlock2__imgArea {
  padding: 0 0 30px 20px;
}
@media screen and (max-width: 767px) {
  .accordionsBlock2__imgArea {
    padding: 0 10px 20px 10px;
  }
}
.accordionsBlock2__title {
  font-size: 1.125rem;
  color: #2589d0;
  font-weight: 600;
}
.accordionsBlock2__button {
  margin: 20px auto 20px;
}

.accordionTable {
  max-width: 800px;
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 767px) {
  .accordionTable {
    padding: 0 10px 20px 10px;
  }
}

.table3Block {
  text-align: left;
  line-height: 1.7;
}
.table3Block__content {
  width: 100%;
}
.table3Block__th {
  width: 160px;
  padding: 20px 17px;
  border: 1px solid gray;
  background: #e6eaef;
}
@media screen and (max-width: 767px) {
  .table3Block__th {
    border-bottom: none;
    display: block;
    text-align: center;
    width: 100%;
  }
}
.table3Block__td {
  padding: 20px 17px;
  border: 1px solid gray;
}
@media screen and (max-width: 767px) {
  .table3Block__td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}
.table3Block__tr {
  background: #fff;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0.05em;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
@media screen and (max-width: 767px) {
  .table3Block__tr_last td:last-child {
    border-bottom: 1px solid gray;
    width: 100%;
  }
}
.table3Block__item {
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.table3Block__item::before {
  content: "●";
  color: rgb(230, 230, 230);
  position: absolute;
  left: 0px;
  top: 0px;
}

.facilityContent {
  padding: 0 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .facilityContent {
    padding: 0 0 40px 20px;
  }
}
.facilityContent__imgArea1 {
  margin: 30px 0 40px;
}
.facilityContent__list {
  display: flex;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .facilityContent__list {
    display: block;
    text-align: center;
  }
}
.facilityContent__imgArea2 {
  margin-top: 20px;
}
.facilityContent__list2 {
  display: flex;
  justify-content: space-around;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .facilityContent__list2 {
    display: block;
    text-align: center;
  }
}

/* --------------------------------------------
 * 　待遇
 * -------------------------------------------- */
.treatmentBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .treatmentBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.treatmentTable {
  max-width: 960px;
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 767px) {
  .treatmentTable {
    padding: 0 10px 20px 10px;
  }
}

.documentBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .documentBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.documentContent__downLoad {
  margin: 20px 0 30px;
}
.documentContent__text {
  font-size: 1.125rem;
  color: #3366ff;
}
.documentContent__text:hover {
  text-decoration: underline;
}
.documentContent__form {
  display: flex;
  justify-content: space-around;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .documentContent__form {
    display: block;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .documentContent__claim {
    margin-bottom: 30px;
  }
}

.fa-solid {
  margin-right: 5px;
}

.button4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25), 0 2px 3px -2px rgba(0, 0, 0, 0.15);
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
}

.button4::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.button4:hover {
  background-color: #1579c0;
}

/* --------------------------------------------
 * 　当院の強み
 * -------------------------------------------- */
.strengthsBlock {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .strengthsBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.strengthsContent__list {
  max-width: 960px;
  display: flex;
  list-style: none;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .strengthsContent__list {
    display: block;
  }
}
.strengthsContent__item {
  margin-right: 20px;
}
.strengthsContent__item :last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .strengthsContent__item {
    width: 100%;
    margin: auto;
  }
}
.strengthsContent__imgArea {
  text-align: center;
}

/* --------------------------------------------
 * 　サブスペシャリティ研修ページ
 * -------------------------------------------- */
.subspeBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .subspeBlock {
    padding-bottom: 50px;
  }
}

.subspeContent__imgArea {
  padding: 30px 0 30px 40px;
}
.subspeContent__space {
  margin: 40px 0 40px 0;
}

/* --------------------------------------------
* 　総合診療専門医プログラムページ
* -------------------------------------------- */
.generalBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .generalBlock {
    padding-bottom: 50px;
  }
}

.generalContent__textArea {
  padding-top: 30px;
}

.sougoumesseBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .sougoumesseBlock {
    padding-bottom: 50px;
  }
}

.sougoumesseContent {
  display: flex;
  align-items: center;
}
.sougoumesseContent__textArea {
  flex: 1 1 50%;
  margin-right: 40px;
  margin-bottom: auto;
}
@media screen and (max-width: 960px) {
  .sougoumesseContent__textArea {
    margin-right: 0;
  }
}
.sougoumesseContent__imgArea {
  flex: 1 1 calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .sougoumesseContent__imgArea {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sougoumesseContent {
    display: block;
  }
  .sougoumesseContent__text {
    padding-bottom: 30px;
  }
}

.topicsBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .topicsBlock {
    padding-bottom: 50px;
  }
}

.topicsContent__imgArea {
  max-width: 250px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .topicsContent__imgArea {
    margin: 20px auto;
  }
}

.facilityBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .facilityBlock {
    padding-bottom: 50px;
  }
}

/* --------------------------------------------
 * 　内科専門医プログラムページ
 * -------------------------------------------- */
.planBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .planBlock {
    padding-bottom: 50px;
  }
}

/* --------------------------------------------
 * 　奨学金ページ
 * -------------------------------------------- */
.scholarBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .scholarBlock {
    padding-bottom: 50px;
  }
}

.scholarContent__imgArea {
  margin: 50px auto 30px;
}
.scholarContent__list {
  display: flex;
}
.scholarContent__tel {
  font-size: 2rem;
  font-weight: bold;
  color: #00008b;
}

.scholar2Block {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .scholar2Block {
    padding-bottom: 50px;
  }
}

.scholar2Content__list {
  display: flex;
  list-style: none;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .scholar2Content__list {
    display: block;
  }
}
.scholar2Content__item {
  display: block;
}
@media screen and (max-width: 767px) {
  .scholar2Content__item {
    margin-right: 0;
  }
}

.meetingBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .meetingBlock {
    padding-bottom: 50px;
  }
}

/* --------------------------------------------
* 　医学生ページ
* -------------------------------------------- */
.studentBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .studentBlock {
    padding-bottom: 30px;
  }
}

.card2_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card2 {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
}

.card2 .discription {
  margin-bottom: auto;
}

.card2_container > *:first-child {
  border: 2px solid #d77906;
}

.card2_container > *:nth-child(2) {
  border: 2px solid #e53e6d;
}

.card2_container > *:nth-child(3) {
  border: 2px solid #079223;
}

.visitContent__list {
  list-style: none;
}
.visitContent__item::before {
  content: "●";
  color: rgb(95, 150, 209);
  left: 0px;
  top: 0px;
}

/* --------------------------------------------
* 　高校生
* -------------------------------------------- */
.interBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .interBlock {
    padding-bottom: 50px;
  }
}

/* --------------------------------------------
* 　お問合せフォーム
* -------------------------------------------- */
.formBlock {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .formBlock {
    padding-bottom: 50px;
  }
}

input[type=text],
input[type=email] {
  height: 40px;
}

.caption-center {
  text-align: center;
}

/* --------------------------------------------
* 　先輩の声
* -------------------------------------------- */
.voiceContent__title {
  font-weight: bold;
  color: #00008b;
  font-size: 2rem;
  margin: 100px 0 50px;
  border-bottom: 1px dotted #555555;
}
@media screen and (max-width: 767px) {
  .voiceContent__title {
    font-size: 1.5rem;
    margin: 60px 0 50px;
  }
}
.voiceContent__others {
  margin: 30px 0;
}
.voiceContent__other {
  font-size: 1.5rem;
  color: #00008b;
}
@media screen and (max-width: 767px) {
  .voiceContent__other {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------
* 　お問合わせ
* -------------------------------------------- */
.wpcf7 {
  width: 100%;
  font-size: 16px;
}

.wpcf7 table {
  width: 100%;
  font-size: 16px;
  margin-top: 30px;
  border-collapse: collapse;
}

@media screen and (max-width: 960px) {
  .wpcf7 table .flexwrap {
    justify-content: flex-start;
  }
}

.wpcf7 table td {
  border: 1px solid #ccc;
  background: rgba(225, 147, 168, 0.4392156863);
}
@media screen and (max-width: 960px) {
  .wpcf7 table td {
    border: 1px solid #ccc !important;
  }
}

.wpcf7 table .td_left {
  width: 25%;
  height: auto;
  vertical-align: middle;
  background: #dcebee;
  padding: 0 1%;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .wpcf7 table .td_left {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 0 3px;
  }
}

.wpcf7 table .td_right {
  width: 60%;
  height: auto;
  background: #fff;
  padding: 10px 2%;
}
@media screen and (max-width: 960px) {
  .wpcf7 table .td_right {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
  }
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 input,
.wpcf7 select {
  height: 45px;
  padding: 5px 5px 3px;
  border-radius: 3px;
  border: 1px solid #666;
  font-size: 16px;
}

.wpcf7 textarea {
  width: 100%;
  height: 150px;
  padding: 5px 5px 3px;
  border-radius: 3px;
  border: 1px solid #ddd;
  font-size: 16px;
}

[data-class=wpcf7cf_group], .wpcf7cf_remove, .wpcf7cf_add {
  margin-left: 20px;
}

.wpcf7 .flexwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  background: #fff;
  border: 1px solid #666;
  outline: none;
}

.wpcf7 tr .wpcf7-form-control-wrap input:focus {
  outline: solid #efefef 1px;
  outline-offset: -1px;
  background-color: #fcfcfc;
}

.wpcf7 tr .wpcf7-form-control-wrap textarea:focus {
  outline: solid #efefef 1px;
  outline-offset: -1px;
  background-color: #fcfcfc;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
  display: block;
  font-size: 12px;
  color: #a00;
}

.wpcf7 .screen-reader-response {
  display: none;
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  text-align: center;
}

.wpcf7 #acceptance {
  text-align: center;
}

.wpcf7 .ajax-loader {
  display: block !important;
  margin: 0 auto !important;
}

.wpcf7 .submitting .ajax-loader {
  background: url(./../img/ajax-loader.gif) no-repeat center;
  width: 16px;
  height: 36px;
  display: block;
  width: 100%;
}

.wpcf7 form:not([data-status=init]) .wpcf7-response-output {
  font-size: 1.7rem;
  padding: 10px 10px 7px;
  border: 3px solid #ef0846;
}

.wpcf7 form[data-status=submitting] .wpcf7-response-output {
  display: none;
}

.submit_box {
  text-align: center;
  margin: 30px 0 50px;
}

.submit_box .wpcf7-spinner {
  display: block;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
}

.submit_box input[type=submit] {
  background: rgba(147, 207, 225, 0.4392156863);
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 4px 15px 0;
  font-size: 16px;
  color: #333;
  display: inline-block !important;
  width: 100%;
  max-width: 380px;
}

.submit_box input[type=submit]:hover {
  cursor: pointer;
}

.submit_box input[type=submit]:disabled {
  background: #eee;
  color: #454545;
}

.radioprint .wpcf7-list-item {
  display: inline-block;
}

.radioprint input[type=radio] {
  height: 20px;
  width: 30px;
}
/*# sourceMappingURL=style.css.map */