@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:wght@400;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: none;
}

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

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

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font_base: 16px/1.7 "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

:root {
  --default-color: #333;
  --default-black: #000;
  --default-white: #fff;
  --default-gray: #a5a5a5;
  --default-gray02: #b9b9b9;
  --default-yellow: #f2c616;
  --default-yellow-light: #e6d695;
  --default-orrange: #f84600;
  --default-orrange-dark: #c76720;
  --default-bg-yellow: #fdfbf0;
  --default-bg-yellow-dark: #e9e7da;
  --default-bg-gray: #f5f5f5;
}

body {
  letter-spacing: 0.05em;
  font-weight: 500;
  box-sizing: border-box;
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

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

a {
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

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

#header {
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #header {
    background-color: #e5ecff;
    background-color: var(--default-white);
    position: fixed;
    width: 100%;
  }
}

#header_wrap {
  position: relative;
  width: 244px;
  padding: 22px;
  position: sticky;
  top: 0;
  left: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #header_wrap {
    width: 100%;
    padding: 13px 8px 8px;
  }
}
#header_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 13px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #001446 0%, rgba(0, 20, 70, 0.7019607843) 100%);
}

.menu_btn_box {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu_btn_box {
    display: block;
    position: absolute;
    right: 0;
    /* padding: 20px; */
    width: 80px;
    height: 90px;
    background-color: #e5ecff;
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    position: absolute;
    word-break: keep-all;
    display: block;
    right: 23px;
    top: 36px;
    z-index: 5;
    width: 30px;
    height: 14px;
    z-index: 1000;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--default-black);
    transition: ease 0.4s;
    display: block;
    position: relative;
    z-index: 1000;
  }
  .menu-btn span:nth-of-type(1) {
    top: 0;
  }
  .menu-btn span:nth-of-type(2) {
    margin-top: 7px;
  }
  .menu-btn span:nth-of-type(3) {
    margin-top: 7px;
  }
}
.menu-btn p {
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.625rem;
  line-height: 1;
  color: #001446;
}

@media screen and (max-width: 767px) {
  .menu-btn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-25deg);
  }
  .menu-btn.active span:nth-of-type(2) {
    display: none;
  }
  .menu-btn.active span:nth-of-type(3) {
    transform: rotate(25deg);
    margin-top: 5px;
  }
  .menu-btn.active p {
    margin-top: 14px;
  }
}
.header_logo {
  margin: 32px 0 10px;
}
@media screen and (max-width: 767px) {
  .header_logo {
    padding: 0;
    margin: 0;
    margin: 12px 0;
    width: calc(100% - 80px);
  }
}
.header_logo a {
  position: relative;
  color: var(--default-black);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .header_logo a::before {
    width: 50px;
    height: 44px;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    margin: auto 0;
  }
  .header_logo a .logo_main {
    font-size: 1.125rem;
    letter-spacing: -0.02em;
  }
  .header_logo a .logo_sub {
    margin-top: 2px;
    font-size: 0.625rem;
    letter-spacing: 0.025em;
  }
}
.header_logo a .logo_main {
  padding-top: 12px;
  font-size: 1.5625rem;
  line-height: 1;
  text-shadow: 1px 2px #99b5fc;
  font-family: "Noto serif JP", serif;
}
@media screen and (max-width: 767px) {
  .header_logo a .logo_main {
    padding-top: 6px;
  }
}
.header_logo a .logo_sub {
  font-size: 0.875rem;
  line-height: 1;
}

.header_menu {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .header_menu {
    display: none;
    padding: 0 20px;
    overflow-x: hidden;
  }
}
.header_menu .menu__item {
  border-bottom: 1px solid #c7d7ff;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .header_menu .menu__item {
    border-bottom: 2px solid #ffffff;
  }
}
.header_menu .menu__item__text {
  display: block;
  padding: 20px 30px 16px 0px;
  position: relative;
  z-index: 100;
  color: #001446;
  font-size: 1rem;
  transition: all 0.3s;
}
.header_menu .menu__item__text::before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 8px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../common/ico_arrow04.svg) no-repeat;
  background-size: contain;
}
.header_menu .menu__item:hover .menu__item__text {
  color: #7a9df7;
}
.header_menu .menu.menu_active .menu__item {
  border-bottom: none;
}
.header_menu .menu.menu_active .menu__item .menu__item__text {
  display: block;
  padding: 13px 30px 16px 0px;
}
.header_menu .menu.menu_etc {
  margin-top: 22px !important;
  border-top: 1px solid #c7d7ff;
  padding-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .header_menu .menu.menu_etc {
    border-top: solid 2px #ffffff;
  }
}
.header_menu .menu.menu_etc .menu__item {
  border-bottom: none;
}
.header_menu .menu.menu_etc .menu__item .menu__item__text {
  display: block;
  padding: 12px 0px 16px 40px;
}
.header_menu .menu.menu_etc .menu__item .menu__item__text::before {
  display: none;
}
.header_menu .menu.menu_etc .menu__item .menu__item__text.ico_professor {
  background: url(../common/ico_professor.svg) no-repeat;
  background-position: left 6px center;
  background-size: 24px;
}
.header_menu .menu.menu_etc .menu__item .menu__item__text.ico_access {
  background: url(../common/ico_access.svg) no-repeat;
  background-position: left center;
  background-size: 34px auto;
}
.header_menu .menu.menu_etc .menu__item .menu__item__text.ico_link {
  background: url(../common/ico_link.svg) no-repeat;
  background-position: left 6px center;
  background-size: 19px;
}
.header_menu .menu_active_h3 {
  display: block;
  padding-left: 22px;
  position: relative;
  font-weight: 500;
  margin: 26px 0 12px;
  font-size: 0.9375rem;
}
.header_menu .menu_active_h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #a8b2cb;
  border-radius: 10px;
}
.header_menu .header_home {
  display: block;
  padding: 20px 0 100px;
}
.header_menu .header_home a {
  font-size: 0.875rem;
  display: block;
  padding: 14px 0 13px;
  text-align: center;
  border: 1px solid var(--default-black);
  line-height: 1;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header_menu .header_home a {
    width: 216px;
    background-color: #f8f4e3;
    height: 50px;
    margin: 41.5px auto 0;
  }
}
.header_menu .header_home a:hover {
  background-color: #7a9df7;
}
.header_menu .header_home a span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-right: 10px;
}
.header_menu .header_home a span:before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../common/ico_house.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  body.active {
    overflow: hidden;
  }
  .header_menu.active {
    overflow: scroll;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    padding: 10px 20px 150px;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: #e5ecff;
  }
  .header_menu.active .menu {
    margin-top: 0px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .header_menu.active .menu {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header_menu.active .menu__item {
    margin-bottom: 50px;
    margin-bottom: 0;
    transition: 0.3s all;
  }
  .header_menu.active .menu__item__text {
    padding: 22px 0 22px 26px;
    font-size: 1.125rem;
    transition: all 0.3s;
  }
  .header_menu.active .menu__item__text:last-child {
    border-bottom: none;
  }
  .header_menu.active .header_home {
    padding: 0;
  }
  .header_menu.active .header_home a {
    width: auto;
    margin: 10px;
    background: #e5ecff;
  }
  .header_menu.active .header_banner {
    display: none;
  }
  .header_menu.active .header_link {
    order: 3;
    margin-bottom: 12px;
  }
  .header_menu.active .header_link a {
    display: block;
    padding: 15px 0;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    border: 1px solid var(--default-black);
    color: var(--default-black);
    background: var(--default-bg-yellow);
  }
  .header_menu.active .header_link a span {
    display: inline-block;
    position: relative;
    padding-left: 30px;
  }
  .header_menu.active .header_link a span:before {
    display: block;
    content: "";
    width: 24px;
    height: 12px;
    background: url(../common/ico_arrow02.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
  }
  .header_menu.active .header_lang {
    order: 2;
    margin-bottom: 34px;
  }
}
footer {
  background: linear-gradient(90deg, #001446 0%, rgba(0, 20, 70, 0.7019607843) 100%);
  position: relative;
  z-index: 2;
}

#pagetop {
  position: fixed;
  right: 14px;
  bottom: 50px;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 767px) {
  #pagetop {
    position: absolute;
    top: 100px;
    right: 14px;
  }
}
#pagetop a {
  font-size: 0.9375rem;
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
  color: #001446;
  position: relative;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    font-size: 1.25rem;
  }
}
#pagetop a::before {
  display: block;
  content: "";
  width: 1px;
  height: 40px;
  background: #001446;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -46px;
}

@media screen and (max-width: 767px) {
  .l-footer {
    width: 100%;
    margin: auto;
    overflow-x: hidden;
  }
}
.l-footer small {
  font-size: 0.6875rem;
}
.l-footer .foter_top {
  position: relative;
}
.l-footer .footer_bottom {
  padding: 32px 40px 11px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer .footer_bottom {
    padding: 30px 20px 12px 20px;
  }
}
.l-footer .footer_bottom .footer_logo a {
  letter-spacing: 0.05rem;
  font-family: "Noto serif JP", serif;
  color: var(--default-white);
}
.l-footer .footer_bottom .footer_logo a .logo_main {
  font-size: 1.5625rem;
  margin-top: 12px;
  line-height: 1;
}
.l-footer .footer_bottom .footer_logo a .small {
  margin-top: 10px;
  font-size: 1.0625rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer .footer_bottom .footer_logo a .small {
    line-height: 2.5;
  }
}
.l-footer .footer_bottom .footer_other {
  display: block;
  text-align: center;
  padding-top: 33px;
}
@media screen and (max-width: 767px) {
  .l-footer .footer_bottom .footer_other {
    text-align: center;
  }
}
.l-footer .footer_bottom .footer_other small {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--default-white);
}

body {
  font: var(--font_base);
  color: var(--default-black);
  font-weight: 400;
  background: #fff;
  word-break: break-all;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body > footer {
  position: sticky;
  top: 100vh;
  z-index: -1;
}

@media all and (min-width: 768px) {
  body {
    min-width: 100%;
    min-width: 1040px;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

.l-container {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: inherit;
    width: 100%;
    padding: 0 20px;
  }
}

#Top .l-twocolumn,
#Under .l-twocolumn {
  display: flex;
}
@media screen and (max-width: 767px) {
  #Top .l-twocolumn,
  #Under .l-twocolumn {
    display: block;
    overflow: auto;
  }
}
#Top .l-mainCont,
#Under .l-mainCont {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: calc(100% - 240px);
  position: relative;
  z-index: 1;
  background: #f5f6fa;
}
@media screen and (max-width: 767px) {
  #Top .l-mainCont,
  #Under .l-mainCont {
    display: block;
    overflow: auto;
    width: 100%;
    padding-top: 90px;
  }
}
#Top .l-mainCont .l-mainCont-inner,
#Under .l-mainCont .l-mainCont-inner {
  position: relative;
}

.c-title {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-title {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  text-decoration: none;
  cursor: pointer;
}

.c-btn_primary {
  display: block;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100%;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

.foL22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.foL24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.foL26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.foL28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.foL30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

.text_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .text_center {
    text-align: center;
  }
}

.text_center_Pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .text_center_Pc {
    text-align: left;
  }
}

.text_center_Sp {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .text_center_Sp {
    text-align: center;
  }
}

#Top {
  position: relative;
}
#Top .h2_top {
  color: #001446;
  line-height: 1;
  font-size: 2.5rem;
  font-family: "Noto serif JP", serif;
  font-weight: normal;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #Top .h2_top {
    font-size: 1.75rem;
  }
}
#Top .h2_top .treat {
  color: #99b5fc;
  font-size: 1rem;
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #Top .h2_top .treat {
    margin-top: 3px;
    font-size: 0.875rem;
  }
}
#Top .mv-slide-1 {
  width: 100%;
  margin: 0 auto 50px;
  max-width: 1334px;
}
@media screen and (max-width: 767px) {
  #Top .mv-slide-1 {
    margin-bottom: 34px;
  }
}
#Top .mv-slide-1 img {
  object-fit: cover;
  width: 100%;
}
#Top .mv-slider {
  width: 100%;
  margin: 0 auto 50px;
  max-width: 1334px;
}
@media screen and (max-width: 767px) {
  #Top .mv-slider {
    margin-bottom: 34px;
  }
}
#Top .mv-slider img {
  object-fit: cover;
  width: 100%;
}
@media all and (min-width: 768px) {
  #Top .spOnly {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #Top .pcOnly {
    display: none;
  }
}
#Top #SectionNews .news_inner {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  min-height: 140px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner {
    margin-top: 37px;
    flex-direction: column;
    min-height: 0;
  }
}
#Top #SectionNews .news_inner .news_head {
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_head {
    margin-right: 0;
    display: flex;
    justify-content: space-between;
  }
}
#Top #SectionNews .news_inner .news_head .news_btn a {
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 19px;
  color: #000;
  padding-right: 36px;
  background: url("../common/ico_arrow01.svg") no-repeat;
  background-size: 22px 8px;
  background-position: center right;
}
#Top #SectionNews .news_inner .news_head .news_btn:hover {
  color: #7a9df7;
}
#Top #SectionNews .news_inner .news_list {
  margin-bottom: 50px;
  width: 100%;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list {
    margin-top: 20px;
  }
}
#Top #SectionNews .news_inner .news_list article {
  padding: 21px 0;
  border-bottom: 1px #c7d7ff solid;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article {
    padding: 10px 0;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item {
    font-size: 0.875rem;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.thum {
  max-width: 100px;
  min-width: 50px;
  min-height: 50px;
  max-height: 150px;
  margin-right: 27px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item.thum {
    margin-right: 10px;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.thum img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#Top #SectionNews .news_inner .news_list article .news__item.contents {
  display: block;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item.contents {
    margin-bottom: 5px;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.contents.time {
  margin-bottom: 5px;
}
#Top #SectionNews .news_inner .news_list article .news__item.contents.time .news_date {
  white-space: nowrap;
  color: #001446;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item.contents.time .news_date {
    padding-right: 6px;
    margin-right: 5px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.contents.time .tag__new {
  color: #ff3838;
  white-space: nowrap;
  margin-right: 12px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item.contents.time .tag__new {
    font-size: 0.6875rem;
    margin-right: 5px;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.contents.time .tag__category {
  display: inline-block;
  color: #fff;
  background: #7a9df7;
  margin-right: 12px;
  padding: 4px 8px;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list article .news__item.contents.time .tag__category {
    margin-right: 3px;
    padding: 2px 4px;
    font-size: 0.5625rem;
    letter-spacing: 0;
  }
}
#Top #SectionNews .news_inner .news_list article .news__item.contents.time-txt {
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
#Top #SectionNews .news_inner .news_list .news-title-only::after {
  display: none;
}
#Top #SectionNews .news_inner .news_list a {
  color: #000;
  display: block;
  text-decoration: none;
}
#Top #SectionNews .news_inner .news_list a:hover article {
  border-bottom: solid 1px #000;
}
#Top #SectionNews .news_inner .news_list .none_news {
  padding: 21px 0;
  border-bottom: 1px #c7d7ff solid;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionNews .news_inner .news_list .none_news {
    padding: 10px 0;
  }
}
#Top #SectionGreeting .greeting_wrapper {
  position: relative;
}
#Top #SectionGreeting .greeting_wrapper .greeting_img {
  z-index: 1;
  position: absolute;
  display: block;
  width: 230px;
  padding: 0 6px;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_img {
    width: 145px;
    top: 136px;
    margin: auto;
    left: 0;
    right: 0;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_img::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -8px;
  right: 0;
  left: 0;
  margin: auto;
  background: #001446;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_img::before {
    display: none;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_img img {
  width: 100%;
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock {
  padding-top: 60px;
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .h2_top {
  margin-left: 337px;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_textblock .h2_top {
    margin: 0 auto;
    text-align: center;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_text {
  position: relative;
  margin-top: -46px;
  background: #fff;
  padding: 82px 85px 38px;
  margin-left: 190px;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_text {
    margin: 0;
    margin-top: -20px;
    padding: 240px 17px 35px;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_text::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -9px;
  right: 0;
  left: 0;
  margin: auto;
  background: #001446;
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn {
    text-align: center;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn a {
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
  line-height: 1;
  padding: 19px 46px 23px 23px;
  color: #ffffff;
  background-color: #001446;
  background: linear-gradient(90deg, #001446 0%, rgba(0, 20, 70, 0.7019607843) 100%);
  transition-duration: 0.5s;
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  #Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn a {
    text-align: left;
    font-size: 1.0625rem;
    padding: 15px 40px 17px 18px;
    margin-top: 22px;
  }
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn a:hover {
  background-color: #001446;
}
#Top #SectionGreeting .greeting_wrapper .greeting_textblock .greeting_linkbtn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 8px;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  background: url("../common/ico_arrow02.svg") no-repeat;
  background-size: contain;
}
#Top #SectionContents {
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents {
    margin-top: 50px;
  }
}
#Top #SectionContents .contents_list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 16px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents .contents_list {
    gap: 20px 0;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #Top #SectionContents .contents_list {
    width: 100%;
    max-width: 600px;
  }
}
#Top #SectionContents .contents_list li {
  width: calc(50% - 8px);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents .contents_list li {
    width: 100%;
  }
}
#Top #SectionContents .contents_list li .contents_item {
  display: block;
  position: relative;
  height: 95px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents .contents_list li .contents_item {
    height: 85px;
  }
}
#Top #SectionContents .contents_list li .contents_item::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../common/ico_arrow02.svg") no-repeat;
  width: 22px;
  height: 8px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 41px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents .contents_list li .contents_item::before {
    right: 15px;
  }
}
#Top #SectionContents .contents_list li .contents_item .contents_item_img {
  height: 100%;
  position: relative;
}
#Top #SectionContents .contents_list li .contents_item .contents_item_img::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 20, 70, 0.5568627451) 0%, rgba(0, 20, 70, 0.3921568627) 100%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#Top #SectionContents .contents_list li .contents_item .contents_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#Top #SectionContents .contents_list li .contents_item .contents_item_title {
  font-weight: normal;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: 25px;
  right: 0;
  line-height: 95px;
}
@media screen and (max-width: 767px) {
  #Top #SectionContents .contents_list li .contents_item .contents_item_title {
    font-size: 0.9375rem;
    left: 15px;
    line-height: 85px;
  }
}
#Top #SectionSocial {
  margin-top: 122px;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial {
    margin-top: 55px;
  }
}
#Top #SectionSocial .social_head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_head {
    flex-direction: column;
    text-align: center;
  }
}
#Top #SectionSocial .social_head .h2_top .treat {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_head .h2_top .sub {
    font-size: 1.375rem;
    color: #011346;
  }
}
@media all and (min-width: 768px) {
  #Top #SectionSocial .social_head .h2_top .social_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_head .sociallist_btn {
    margin-top: 10px;
  }
}
#Top #SectionSocial .social_head .sociallist_btn a {
  line-height: 1;
  color: #000;
  padding-right: 62px;
  background: url("../common/ico_arrow01.svg") no-repeat;
  background-size: 22px 8px;
  background-position: center right;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_head .sociallist_btn a {
    font-size: 0.875rem;
    padding-right: 40px;
  }
}
#Top #SectionSocial .social_head .sociallist_btn:hover {
  color: #7a9df7;
}
#Top #SectionSocial .social_area {
  margin-top: 30px;
  background: #fff;
  padding: 46px 32px;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_area {
    padding: 26px 12px;
  }
}
#Top #SectionSocial .social_area .social_list_area {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
#Top #SectionSocial .social_area .social_list_area .social_list {
  position: relative;
  height: 200px;
  overflow: hidden;
}
#Top #SectionSocial .social_area .social_list_area .social_list::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8117647059) 0%, rgba(255, 255, 255, 0.4470588235) 40%, rgba(255, 255, 255, 0) 80%);
  height: 200px;
}
#Top #SectionSocial .social_area .social_list_area .social_list ul {
  position: relative;
}
#Top #SectionSocial .social_area .social_list_area .social_list ul > li {
  list-style-type: none;
  line-height: 1.2rem;
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_area .social_list_area .social_list ul > li {
    padding-left: 24px;
  }
}
#Top #SectionSocial .social_area .social_list_area .social_list ul > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 17px;
  box-sizing: border-box;
  display: inline-block;
  background: #a8b2cb;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_area .social_list_area .social_list ul > li::before {
    left: 10px;
  }
}
#Top #SectionSocial .social_area .social_list_area .social_list.active {
  height: auto;
  overflow: visible;
}
#Top #SectionSocial .social_area .social_list_area .social_list.active::after {
  height: 0;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area {
  position: relative;
  text-align: center;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn {
  line-height: 50px;
  display: inline-block;
  padding: 0 36px;
  color: #fff;
  width: 180px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -72px;
  background: linear-gradient(90deg, rgba(0, 20, 70, 0.5568627451) 0%, rgba(0, 20, 70, 0.3921568627) 100%);
  background: linear-gradient(90deg, #001446 0%, rgba(0, 20, 70, 0.7019607843) 100%);
}
@media screen and (max-width: 767px) {
  #Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn {
    bottom: -53px;
  }
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn:hover {
  background: #7a9df7;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn::before {
  display: block;
  position: absolute;
  content: "続きを読む";
  height: 50px;
  width: 180px;
  margin: auto;
  padding-left: 30px;
  left: 0;
  right: 0;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn .cross {
  position: relative;
  width: 180px;
  height: 50px;
  display: block;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn .cross::before {
  display: block;
  content: "";
  width: 13px;
  height: 1px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn .cross::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 13px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 6px;
  top: 19px;
  bottom: 0;
  transition: 0.8s all;
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn.active::before {
  display: block;
  position: absolute;
  content: "閉じる";
}
#Top #SectionSocial .social_area .social_list_area .social_btn_area .social_btn.active .cross::after {
  display: none;
  background: transparent;
  transition: 0.8s all;
}
#Top #SectionTextBanner {
  margin-top: 140px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner {
    margin-top: 96px;
  }
}
#Top #SectionTextBanner .textbanner_area {
  background: #fff;
  padding: 105px 0 64px;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area {
    padding: 65px 0 50px;
  }
}
#Top #SectionTextBanner .textbanner_area .h2_top {
  margin-top: 120px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -142px;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area .h2_top {
    top: -136px;
  }
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area .h2_top .treat {
    margin-top: 8px;
  }
}
#Top #SectionTextBanner .textbanner_area ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-items: stretch;
  gap: 16px 40px;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area ul {
    padding: 0;
  }
}
#Top #SectionTextBanner .textbanner_area ul li {
  width: calc(33.3333333333% - 27px);
  display: flex;
  position: relative;
}
#Top #SectionTextBanner .textbanner_area ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  margin: auto;
  background: #e5ecff;
  transition: all 0.3s;
}
#Top #SectionTextBanner .textbanner_area ul li:hover::before {
  height: 5px;
  top: 100%;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area ul li {
    width: 100%;
  }
}
#Top #SectionTextBanner .textbanner_area ul li a {
  width: 100%;
  text-align: center;
  justify-content: center;
  line-height: 1.2rem;
  display: flex;
  align-items: center;
  padding: 24px 50px;
  border: 1px #001446 solid;
  font-weight: 400;
  font-size: 1rem;
  color: var(--default-black);
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area ul li a {
    padding: 0 35px 0 10px;
    min-height: 64px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
#Top #SectionTextBanner .textbanner_area ul li a::before, #Top #SectionTextBanner .textbanner_area ul li a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 8px;
  background: url("../common/ico_arrow03.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
}
@media screen and (max-width: 767px) {
  #Top #SectionTextBanner .textbanner_area ul li a::before, #Top #SectionTextBanner .textbanner_area ul li a::after {
    width: 22px;
    height: 9px;
  }
}
#Top #SectionTextBanner .textbanner_area ul li a::after {
  width: 22px;
  height: 22px;
  right: auto;
  left: 24px;
  background: url("../common/ico_link.svg") no-repeat;
  background-size: contain;
}
#Top #SectionBanner {
  background: #fff;
  padding-bottom: 54px;
}
#Top #SectionBanner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
}
@media screen and (max-width: 767px) {
  #Top #SectionBanner ul {
    padding: 0;
    gap: 16px 0;
  }
}
#Top #SectionBanner ul li {
  width: calc(33.3333333333% - 28px);
}
@media screen and (max-width: 767px) {
  #Top #SectionBanner ul li {
    width: 100%;
  }
}
#Top #SectionBanner ul li a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SectionBanner ul li a {
    justify-content: center;
  }
}
#Top #SectionBanner ul li a:hover {
  background: var(--default-bg-yellow);
}
#Top #SectionAccess {
  margin-top: 64px;
}
#Top #SectionAccess .h2_top {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  #Top #SectionAccess .h2_top .treat {
    margin-top: 8px;
  }
}
#Top #SectionAccess .access_area {
  display: flex;
  margin-bottom: 73px;
}
@media screen and (max-width: 767px) {
  #Top #SectionAccess .access_area {
    margin-bottom: 25px;
  }
}
#Top #SectionAccess .access_area .access_textblock {
  margin-right: 20px;
}
#Top #SectionAccess .access_area .access_textblock .site_title {
  font-size: 1.875rem;
  letter-spacing: 0.05rem;
  font-family: "Noto serif JP", serif;
  color: #001446;
}
#Top #SectionAccess .access_area .access_textblock .site_title span {
  display: block;
  font-size: 1.0625rem;
}
#Top #SectionAccess .access_area .access_textblock .ico_text {
  font-size: 0.9375rem;
  margin-top: 14px;
  line-height: 1.7rem;
  display: block;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 5px left 0px;
}
#Top #SectionAccess .access_area .access_textblock .ico_access {
  background-image: url(../common/ico_map.svg);
}
#Top #SectionAccess .access_area .access_textblock .ico_tel {
  background-image: url(../common/ico_tel.svg);
  background-size: 24px;
  background-position: top 0px left 0px;
}
#Top #SectionAccess .access_area .access_textblock .ico_mail {
  background-image: url(../common/ico_mail.svg);
  background-size: 19px;
  background-position: top 7px left 0px;
}
#Top #SectionAccess .access_area .access_textblock .ico_fb {
  background-image: url(../common/ico_fb.svg);
}
#Top #SectionAccess .access_area .access_textblock .ico_fb a {
  color: #000 !important;
}
#Top #SectionAccess .access_area .access_map_pc,
#Top #SectionAccess .access_area .access_map_sp {
  width: 500px;
  height: 309px;
  padding: 5px;
  border: solid 1px #001446;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #Top #SectionAccess .access_area .access_map_pc,
  #Top #SectionAccess .access_area .access_map_sp {
    width: 90vw;
    height: 300px;
  }
}
#Top #SectionAccess .access_area .access_map_pc iframe,
#Top #SectionAccess .access_area .access_map_sp iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #Top #SectionAccess .access_area .access_map_pc {
    display: none;
  }
}
@media all and (min-width: 768px) {
  #Top #SectionAccess .access_area .access_map_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #Top #SectionAccess .access_area .sp_top_area {
    margin-bottom: 18px;
  }
}
#Top #SectionAccess .access_area .sp_bottom_area {
  margin-top: 18px;
}

#contents_detail .titleArea {
  padding: 19px;
  background: url(../images/bg_contentsarea.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #contents_detail .titleArea {
    padding: 7px;
  }
}
#contents_detail .titleArea .pageTitle {
  border: solid 1px #fff;
  display: block;
  line-height: 1;
  padding: 35px 0 33px 47px;
  text-shadow: 0px 0px 9px rgb(0, 20, 70);
  font-size: 1.9375rem;
  font-family: "Noto serif JP", serif;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #contents_detail .titleArea .pageTitle {
    font-size: 1.5rem;
    padding: 25px 14px;
  }
}
#contents_detail .pageArea {
  background: #fff;
  padding: 50px 70px;
  margin-top: 54px;
  margin-bottom: 69px;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 20px 20px 0px;
  height: calc(100% - 40px);
}
@media screen and (max-width: 767px) {
  #contents_detail .pageArea {
    padding: 0 16px 30px;
    margin-top: 22px;
  }
}
#contents_detail .pageArea .pageContents {
  min-height: 700px;
}
@media screen and (max-width: 767px) {
  #contents_detail .pageArea .pageContents {
    padding: 10px;
    margin-bottom: 30px;
  }
}
#contents_detail .pageArea .home-btn {
  margin-top: 100px;
  text-align: center;
}
#contents_detail .pageArea .home-btn a {
  font-size: 1.125rem;
  display: inline-block;
  padding: 18px 130px;
  text-align: center;
  border: 1px solid #001446;
  color: #001446;
  line-height: 1;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #contents_detail .pageArea .home-btn a {
    padding: 18px 80px;
    display: block;
  }
}
#contents_detail .pageArea .home-btn a:hover {
  background-color: #e5ecff;
}
#contents_detail .pageArea .home-btn a span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-right: 10px;
}
#contents_detail .pageArea .home-btn a span:before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../common/ico_house.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}

.pageMenu {
  padding: 20px 0 24px;
  display: inline-block;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .pageMenu {
    padding: 14px 0;
  }
}
.pageMenu ul {
  display: flex;
  flex-wrap: wrap;
}
.pageMenu ul li {
  margin: 0 14px 0 10px !important;
  padding: 0 0 4px 0 !important;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--default-black);
  position: relative;
}
.pageMenu ul li::before {
  display: none !important;
}
.pageMenu ul li::after {
  content: "/";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -14px;
}
.pageMenu ul li:last-child {
  border-bottom: 1px solid var(--default-black);
}
.pageMenu ul li:last-child::after {
  display: none;
}
.pageMenu ul li a {
  transition: all 0.3s;
  color: var(--default-black);
  text-decoration: none;
  font-size: 0.9375rem;
}
.pageMenu ul li a:hover {
  opacity: 0.7;
}

.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .input-box {
    flex-direction: column;
  }
}
.input-box .input-area {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .input-box .input-area {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.input-box .input-area input {
  width: 100%;
}
.input-box .input-submit {
  display: inline-block;
}
.input-box .input-submit a {
  display: block;
  padding: 8px 10px;
  background-color: #001446;
  color: var(--default-white);
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}
.input-box .input-submit a:hover {
  color: var(--default-white);
  opacity: 0.8;
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}

#news_detail.news_list_page .news_category {
  margin-bottom: 30px;
  text-align: center;
}
#news_detail.news_list_page .news_category .select_wrap {
  margin-bottom: 10px;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  display: block;
  background: var(--default-white);
  border: 1px solid #001446;
  transition: 0.2s all;
}
#news_detail.news_list_page .news_category .select_wrap:active, #news_detail.news_list_page .news_category .select_wrap:hover {
  background: #e5ecff;
}
#news_detail.news_list_page .news_category .select_wrap::before {
  content: "";
  background: url(../common/ico_arrow06.png) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 12px;
  display: block;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_category .select_wrap::before {
    background: url(../common/ico_arrow06.png) no-repeat;
    background-size: contain;
    width: 11px;
    height: 10px;
  }
}
#news_detail.news_list_page .news_category select {
  width: 100%;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  transition: 0.2s all;
  padding: 14px 60px 14px 14px;
  border-radius: unset;
  border-radius: 5px;
}
#news_detail.news_list_page .news_list {
  margin-bottom: 50px;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list {
    padding: 0;
    margin-bottom: 20px;
  }
}
#news_detail.news_list_page .news_list article {
  padding: 26px 0 26px 20px;
  border-bottom: 1px #d8d8d8 solid;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article {
    padding: 20px 0;
  }
}
#news_detail.news_list_page .news_list article::after {
  display: block;
  content: "";
  width: 32px;
  height: 14px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article::after {
    width: 22px;
    height: 9px;
    top: auto;
    bottom: 6px;
    margin: 0;
    right: 0;
  }
}
#news_detail.news_list_page .news_list article .news__item {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item {
    font-size: 0.875rem;
  }
}
#news_detail.news_list_page .news_list article .news__item-thum {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  margin-right: 22px;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item-thum {
    margin-right: 12px;
  }
}
#news_detail.news_list_page .news_list article .news__item-thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item-contents {
    margin-bottom: 5px;
  }
}
#news_detail.news_list_page .news_list article .news__item-contents-time {
  margin-bottom: 5px;
}
#news_detail.news_list_page .news_list article .news__item-contents-time .news_date {
  padding-right: 24px;
  border-right: 1px solid #d0d5d9;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item-contents-time .news_date {
    padding-right: 6px;
    margin-right: 5px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
#news_detail.news_list_page .news_list article .news__item-contents-time .tag__new {
  color: var(--default-orrange) !important;
  font-weight: 600;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item-contents-time .tag__new {
    font-size: 0.6875rem;
    margin-right: 5px;
  }
}
#news_detail.news_list_page .news_list article .news__item-contents-time .tag__category {
  display: inline-block;
  color: #fff !important;
  background: #7a9df7 !important;
  margin-right: 12px;
  padding: 4px 8px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_list article .news__item-contents-time .tag__category {
    margin-right: 3px;
    padding: 5px 4px;
    font-size: 0.5625rem;
    letter-spacing: 0;
  }
}
#news_detail.news_list_page .news_list article .news__item-contents-time-txt {
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
#news_detail.news_list_page .news_list .news-title-only::after {
  display: none;
}
#news_detail.news_list_page .news_list a {
  color: #000;
  display: block;
  text-decoration: none;
}
#news_detail.news_list_page .news_list a:hover article {
  background: #e5ecff;
}
#news_detail.news_list_page .news_count {
  display: flex;
  flex-direction: column;
}
#news_detail.news_list_page .news_count-txt {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_count-txt {
    font-size: 0.8125rem;
    margin-bottom: 10px;
    text-align: center;
  }
}
#news_detail.news_list_page .news_count-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0px;
}
#news_detail.news_list_page .news_count-list .newscount-btn {
  width: 25%;
  padding: 0 !important;
}
#news_detail.news_list_page .news_count-list .newscount-btn::before {
  display: none;
}
#news_detail.news_list_page .news_count-list .newscount-btn a {
  padding: 15px 0 !important;
  text-align: center;
  color: #333;
  display: block;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #001446;
  border-right: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #news_detail.news_list_page .news_count-list .newscount-btn a {
    font-size: 0.8125rem;
    padding: 10px 0 !important;
  }
}
#news_detail.news_list_page .news_count-list .newscount-btn a:hover {
  background: #001446;
  color: var(--default-white);
}
#news_detail.news_list_page .news_count-list .newscount-btn:last-child a {
  border-right: 1px solid #001446;
}
#news_detail.news_list_page .news_count-list .newscount-btn.stop_btn a {
  pointer-events: none;
  background: #dadada;
  color: #8a8a8a;
}

#news_detail .titleArea_level {
  padding: 19px;
  background: url(../images/bg_newsarea.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #news_detail .titleArea_level {
    padding: 7px;
  }
}
#news_detail .titleArea_level .pageTitle_level {
  border: solid 1px #fff;
  display: block;
  line-height: 1;
  padding: 35px 0 33px 47px;
  text-shadow: 0px 0px 9px rgb(0, 20, 70);
  font-size: 1.9375rem;
  font-family: "Noto serif JP", serif;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #news_detail .titleArea_level .pageTitle_level {
    font-size: 1.5rem;
    padding: 25px 14px;
  }
}
#news_detail .pageArea {
  background: var(--default-bg-gray);
  padding: 0 16px 40px;
  height: 100%;
  min-height: 1000px;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea {
    padding: 0 16px 50px;
    min-height: auto;
  }
}
#news_detail .pageArea .pageNewsday {
  padding: 20px 30px;
  background: #e5ecff;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea .pageNewsday {
    padding: 5px 11px;
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
#news_detail .pageArea .contNewsTitle h2 {
  display: block;
  margin-bottom: 10px;
  padding: 20px 0px 20px 20px;
  border-bottom: solid 1px #001446;
  border-left: solid 10px #e5ecff;
  border-right: solid 1px #001446;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea .contNewsTitle h2 {
    font-size: 1.125rem;
  }
}
#news_detail .pageArea .contNewsTitle .day {
  padding: 20px 30px;
  background: #e5ecff;
  display: block;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea .contNewsTitle .day {
    padding: 5px 11px;
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
#news_detail .pageArea .news_category {
  text-align: left;
  font-size: 0.8125rem;
  color: #93aef1;
}
#news_detail .pageArea .pageContents {
  max-width: 990px;
  background: var(--default-white);
  padding: 40px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea .pageContents {
    padding: 10px;
    margin-bottom: 30px;
  }
}
#news_detail .pageArea .home-btn {
  text-align: center;
}
#news_detail .pageArea .home-btn a {
  display: inline-block;
  padding: 20px 120px;
  border: 1px solid #001446;
  color: var(--default-black);
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #news_detail .pageArea .home-btn a {
    padding: 16px 85px;
  }
}
#news_detail .pageArea .home-btn a:hover {
  background: #e5ecff;
}

/*!
utility > utility
------------------------------
*/
/*===========================~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Informakerの装飾パーツ
*===========================~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.edit_area,
.cke_editable {
  width: 100%;
  line-height: 1.8;
  height: auto;
  /*================================================
  ページサマリー
  ================================================*/
  /*================================================
  ソーシャルボタン
  ================================================*/
  /*================================================
  絵文字
  ================================================*/
  /*================================================
  見出し
  ================================================*/
  /*================================================
  小見出し
  ================================================*/
  /*================================================
  上付き、下付き文字
  ================================================*/
  /*================================================
  リスト(数字)
  ================================================*/
  /*================================================
  リスト(数字)：編集パーツ
  ================================================*/
  /*================================================
  リスト(点)
  ================================================*/
  /*================================================
  リスト(チェック)：編集パーツ
  ================================================*/
  /*================================================
  区切り線
  ================================================*/
  /*-----------------------------------------------------------文字サイズ*/
  /*================================================
  リンクボタン
  ================================================*/
  /*================================================
  画像
  ================================================*/
  /*================================================
  テキスト入り画像
  ================================================*/
  /*================================================
  囲い
  ================================================*/
  /*================================================
  table
  ================================================*/
  /*================================================
  アンカーリンク
  ================================================*/
  /*================================================
  Google Map
  ================================================*/
}
.edit_area .pagesummary,
.cke_editable .pagesummary {
  margin: 0 0 30px 0;
}
.edit_area .pagesummary ul,
.cke_editable .pagesummary ul {
  position: relative;
  padding: 20px;
  background: #e3ebff;
  margin-left: 0px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .edit_area .pagesummary ul,
  .cke_editable .pagesummary ul {
    padding: 15px 5%;
  }
}
.edit_area .pagesummary ul li,
.cke_editable .pagesummary ul li {
  display: inline-block;
  margin-right: 34px;
  padding-left: 0 !important;
}
.edit_area .pagesummary ul li::before,
.cke_editable .pagesummary ul li::before {
  content: none;
}
.edit_area .pagesummary ul li a,
.cke_editable .pagesummary ul li a {
  font-size: 0.875rem;
  display: inline-block;
  padding-left: 20px;
  text-decoration: none;
  color: #001446;
  font-size: 0.875rem;
  transition: 0.2s;
  border-bottom: none;
  position: relative;
  margin-right: 20px;
}
.edit_area .pagesummary ul li a::after,
.cke_editable .pagesummary ul li a::after {
  position: absolute;
  content: "";
  height: 9px;
  width: 9px;
  left: 0px;
  border-top: 2px solid #99b5fc;
  border-left: 2px solid #99b5fc;
  transform: translateY(-50%) rotate(-135deg);
  display: inline-block;
  top: 4px;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
.edit_area .pagesummary ul li a:hover,
.cke_editable .pagesummary ul li a:hover {
  color: #3f5eaa;
  transition: all 0.4s;
}
@media all and (min-width: 768px) {
  .edit_area .pagesummary ul li a,
  .cke_editable .pagesummary ul li a {
    font-size: 1rem;
  }
}
.edit_area .detail_news_social,
.cke_editable .detail_news_social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.edit_area .detail_news_social ul,
.cke_editable .detail_news_social ul {
  display: flex;
  justify-content: center;
}
.edit_area .detail_news_social ul li,
.cke_editable .detail_news_social ul li {
  margin-left: 10px;
  list-style-type: none;
  padding-left: 0;
}
.edit_area .detail_news_social ul li::before,
.cke_editable .detail_news_social ul li::before {
  content: none;
}
.edit_area .detail_news_social ul li a,
.cke_editable .detail_news_social ul li a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}
.edit_area .detail_news_social ul li a.fb,
.cke_editable .detail_news_social ul li a.fb {
  background: #1a63ac url(../common/logo_fb.png) no-repeat center;
  background-size: auto 18px;
}
.edit_area .detail_news_social ul li a.tw,
.cke_editable .detail_news_social ul li a.tw {
  background: #000 url(../common/logo_x.png) no-repeat center;
  background-size: auto 15px;
}
.edit_area .detail_news_social ul li a.line,
.cke_editable .detail_news_social ul li a.line {
  background: #00b900 url(../common/logo_line.png) no-repeat center;
  background-size: auto 20px;
}
.edit_area img.ico_20,
.cke_editable img.ico_20 {
  width: auto !important;
  height: 20px !important;
  padding: 0 4px !important;
  margin: inherit;
  vertical-align: middle !important;
  margin-bottom: 3px !important;
}
.edit_area h2.h2_title01,
.cke_editable h2.h2_title01 {
  font-weight: normal;
  font-size: 1.875rem;
  padding-bottom: 10px;
  margin: 20px 0;
  color: #333333;
  font-weight: 400;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .edit_area h2.h2_title01,
  .cke_editable h2.h2_title01 {
    font-size: 1.25rem;
    padding: 0 0 24px 0;
    margin-bottom: 20px;
  }
}
.edit_area h2.h2_title01::before,
.cke_editable h2.h2_title01::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 8px;
  width: 100%;
  height: 3px;
  background: #001446;
  margin: auto;
  left: 0;
  bottom: 0;
}
.edit_area h2.h2_title01::after,
.cke_editable h2.h2_title01::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 8px;
  width: 49px;
  height: 3px;
  background: #99b5fc;
  margin: auto;
  left: 0;
  bottom: 0;
}
.edit_area h3.h3_title01,
.cke_editable h3.h3_title01 {
  color: #3f5eaa;
  font-size: 1.625rem;
  font-weight: 400;
  margin: 12px 0;
  position: relative;
  padding: 0 0 0 24px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .edit_area h3.h3_title01,
  .cke_editable h3.h3_title01 {
    font-size: 1.125rem;
    margin: 15px 0;
  }
}
.edit_area h3.h3_title01::before,
.cke_editable h3.h3_title01::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #3f5eaa;
  position: absolute;
  margin: auto;
  top: 51%;
  left: 0;
}
.edit_area sub,
.cke_editable sub {
  font-size: 75.5%;
  vertical-align: bottom;
}
.edit_area sup,
.cke_editable sup {
  font-size: 75.5%;
  vertical-align: top;
}
.edit_area ol,
.cke_editable ol {
  position: relative;
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}
.edit_area ol > li,
.cke_editable ol > li {
  position: relative;
  padding: 3px 0 4px 30px;
  margin-bottom: 10px;
  list-style: none !important;
}
.edit_area ol > li:before,
.cke_editable ol > li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  color: #001446;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
}
.edit_area ol > li:before,
.cke_editable ol > li:before {
  background: none;
}
.edit_area ol.list_num01,
.cke_editable ol.list_num01 {
  position: relative;
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}
.edit_area ol.list_num01 > li,
.cke_editable ol.list_num01 > li {
  position: relative;
  padding: 3px 0 4px 30px;
  margin-bottom: 10px;
  list-style: none !important;
}
.edit_area ol.list_num01 > li:before,
.cke_editable ol.list_num01 > li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  background: #3f5eaa;
  color: var(--default-white);
  font-weight: bold;
  text-align: center;
  font-size: 0.75rem;
}
.edit_area ol.list_num01 > li:before,
.cke_editable ol.list_num01 > li:before {
  background: #3f5eaa;
}
.edit_area ul,
.cke_editable ul {
  position: relative;
}
.edit_area ul > li,
.cke_editable ul > li {
  list-style-type: none;
  margin-bottom: 5px;
  padding-left: 28px;
  position: relative;
}
.edit_area ul > li::before,
.cke_editable ul > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  box-sizing: border-box;
  display: inline-block;
  background: #3f5eaa;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.edit_area ul.list_check,
.cke_editable ul.list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}
.edit_area ul.list_check > li,
.cke_editable ul.list_check > li {
  position: relative;
  margin-bottom: 10px;
  list-style: none !important;
}
.edit_area ul.list_check > li::before,
.cke_editable ul.list_check > li::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  top: 5px;
  left: 6px;
  height: 15px;
  width: 8px;
  transform: rotate(45deg);
  border-bottom: solid 4px #3f5eaa;
  border-right: solid 4px #3f5eaa;
  /*打ち消し*/
  border-radius: 0;
  background: none;
}
.edit_area .div_hr01,
.cke_editable .div_hr01 {
  margin: 15px 0;
  border-top: 1px solid #e8e8e8;
}
.edit_area span.op_large,
.edit_area span.op_mideamu,
.edit_area span.op_small,
.cke_editable span.op_large,
.cke_editable span.op_mideamu,
.cke_editable span.op_small {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}
.edit_area span.op_large,
.cke_editable span.op_large {
  font-size: 1.125rem;
}
.edit_area span.op_mideamu,
.cke_editable span.op_mideamu {
  font-size: 1rem;
}
.edit_area span.op_small,
.cke_editable span.op_small {
  font-size: 0.875rem;
}
.edit_area .link_btn,
.cke_editable .link_btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1;
  padding: 19px 46px 23px 23px;
  color: #ffffff;
  background-color: #001446;
  background: linear-gradient(90deg, #001446 0%, rgba(0, 20, 70, 0.7019607843) 100%);
  transition-duration: 0.5s;
  margin-top: 19px;
}
.edit_area .link_btn:hover,
.cke_editable .link_btn:hover {
  background-color: #001446;
}
.edit_area .link_btn::before,
.cke_editable .link_btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 8px;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  background: url("../common/ico_arrow02.svg") no-repeat;
  background-size: contain;
}
.edit_area .link_btn.link_btn-secondary,
.cke_editable .link_btn.link_btn-secondary {
  /*オレンジ*/
  background: linear-gradient(90deg, #7a9df7 0%, rgba(153, 181, 252, 0.5843137255) 100%);
  color: #fff;
  transition: all 0.3s;
}
.edit_area .link_btn.link_btn-secondary::before,
.cke_editable .link_btn.link_btn-secondary::before {
  transition: all 0.3s;
  background-image: url(../common/ico_arrow05.svg);
}
.edit_area .link_btn.link_btn-secondary:hover,
.cke_editable .link_btn.link_btn-secondary:hover {
  color: #7a9df7;
}
.edit_area .link_btn.link_btn-secondary:hover::after,
.cke_editable .link_btn.link_btn-secondary:hover::after {
  right: 14px;
}
.edit_area .link_btn.link_btn-dark,
.cke_editable .link_btn.link_btn-dark {
  /*白背景、紺色枠*/
  background: #fff;
  color: var(--default-black);
  border: 3px solid #7a9df7;
}
.edit_area .link_btn.link_btn-dark::before,
.cke_editable .link_btn.link_btn-dark::before {
  transition: all 0.3s;
  background-image: url(../common/ico_arrow03.svg);
}
.edit_area .link_btn.link_btn-dark:hover,
.cke_editable .link_btn.link_btn-dark:hover {
  color: #577ee3;
}
.edit_area .link_btn.link_btn-dark:hover::after,
.cke_editable .link_btn.link_btn-dark:hover::after {
  right: 14px;
}
.edit_area .link_btn.link_btn-large,
.cke_editable .link_btn.link_btn-large {
  display: block;
  padding: 30px 40px 30px 30px;
  font-size: 1.25rem !important;
}
.edit_area .link_btn.link_btn-large::after,
.cke_editable .link_btn.link_btn-large::after {
  background-image: url(../common/ico_arrow06.png);
}
@media screen and (max-width: 767px) {
  .edit_area .link_btn.link_btn-large,
  .cke_editable .link_btn.link_btn-large {
    font-size: 1.125rem !important;
    padding: 20px 40px 20px 16px;
  }
}
.edit_area .link_btn.link_btn-small,
.cke_editable .link_btn.link_btn-small {
  box-sizing: border-box;
}
.edit_area .link_btn.link_btn-small::before,
.cke_editable .link_btn.link_btn-small::before {
  width: 18px;
  height: 16px;
  background-image: url(../common/ico_link.svg);
}
.edit_area .link_btn.link_btn-secondary.link_btn-small::before,
.cke_editable .link_btn.link_btn-secondary.link_btn-small::before {
  background-image: url(../common/ico_link.svg);
}
.edit_area .link_btn.link_btn-secondary.link_btn-large::before,
.cke_editable .link_btn.link_btn-secondary.link_btn-large::before {
  background-image: url(../common/ico_arrow07.png);
}
.edit_area .link_btn.link_btn-dark.link_btn-large::after,
.cke_editable .link_btn.link_btn-dark.link_btn-large::after {
  background-image: url(../common/ico_arrow06.png);
}
.edit_area .link_btn.link_btn-dark.link_btn-small::before,
.cke_editable .link_btn.link_btn-dark.link_btn-small::before {
  background-image: url(../common/ico_link.svg);
}
.edit_area img,
.cke_editable img {
  max-width: 100%;
  vertical-align: bottom;
  margin: auto;
  display: inline;
}
.edit_area .newsImg03 ul,
.edit_area .newsImg02 ul,
.edit_area .newsImg01 ul,
.cke_editable .newsImg03 ul,
.cke_editable .newsImg02 ul,
.cke_editable .newsImg01 ul {
  margin-left: 0 !important;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.edit_area .newsImg03 ul li,
.edit_area .newsImg02 ul li,
.edit_area .newsImg01 ul li,
.cke_editable .newsImg03 ul li,
.cke_editable .newsImg02 ul li,
.cke_editable .newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  font-size: 0.75rem;
  position: inherit !important;
  padding-left: 0;
}
.edit_area .newsImg03 ul li::before,
.edit_area .newsImg02 ul li::before,
.edit_area .newsImg01 ul li::before,
.cke_editable .newsImg03 ul li::before,
.cke_editable .newsImg02 ul li::before,
.cke_editable .newsImg01 ul li::before {
  content: none !important;
}
.edit_area .newsImg03 ul li img,
.edit_area .newsImg02 ul li img,
.edit_area .newsImg01 ul li img,
.cke_editable .newsImg03 ul li img,
.cke_editable .newsImg02 ul li img,
.cke_editable .newsImg01 ul li img {
  width: 100%;
  height: auto !important;
}
.edit_area .newsImg03 li,
.cke_editable .newsImg03 li {
  width: 32%;
}
.edit_area .newsImg02 li,
.cke_editable .newsImg02 li {
  width: 49%;
}
.edit_area .newsImg01 li,
.cke_editable .newsImg01 li {
  width: 100%;
}
.edit_area .lay-grid,
.cke_editable .lay-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.edit_area .lay-grid > .col-1, .edit_area .lay-grid > .col-2, .edit_area .lay-grid > .col-3, .edit_area .lay-grid > .col-4, .edit_area .lay-grid > .col-5, .edit_area .lay-grid > .col-6, .edit_area .lay-grid > .col-7, .edit_area .lay-grid > .col-8, .edit_area .lay-grid > .col-9, .edit_area .lay-grid > .col-10, .edit_area .lay-grid > .col-11, .edit_area .lay-grid > .col-12,
.cke_editable .lay-grid > .col-1,
.cke_editable .lay-grid > .col-2,
.cke_editable .lay-grid > .col-3,
.cke_editable .lay-grid > .col-4,
.cke_editable .lay-grid > .col-5,
.cke_editable .lay-grid > .col-6,
.cke_editable .lay-grid > .col-7,
.cke_editable .lay-grid > .col-8,
.cke_editable .lay-grid > .col-9,
.cke_editable .lay-grid > .col-10,
.cke_editable .lay-grid > .col-11,
.cke_editable .lay-grid > .col-12 {
  border-radius: 4px;
  box-sizing: border-box;
  margin: 0;
  padding: 0px 0px 5px;
}
@media all and (min-width: 768px) {
  .edit_area .lay-grid > .col-1, .edit_area .lay-grid > .col-2, .edit_area .lay-grid > .col-3, .edit_area .lay-grid > .col-4, .edit_area .lay-grid > .col-5, .edit_area .lay-grid > .col-6, .edit_area .lay-grid > .col-7, .edit_area .lay-grid > .col-8, .edit_area .lay-grid > .col-9, .edit_area .lay-grid > .col-10, .edit_area .lay-grid > .col-11, .edit_area .lay-grid > .col-12,
  .cke_editable .lay-grid > .col-1,
  .cke_editable .lay-grid > .col-2,
  .cke_editable .lay-grid > .col-3,
  .cke_editable .lay-grid > .col-4,
  .cke_editable .lay-grid > .col-5,
  .cke_editable .lay-grid > .col-6,
  .cke_editable .lay-grid > .col-7,
  .cke_editable .lay-grid > .col-8,
  .cke_editable .lay-grid > .col-9,
  .cke_editable .lay-grid > .col-10,
  .cke_editable .lay-grid > .col-11,
  .cke_editable .lay-grid > .col-12 {
    padding: 5px 0;
  }
}
.edit_area .lay-grid > .col-1 img, .edit_area .lay-grid > .col-2 img, .edit_area .lay-grid > .col-3 img, .edit_area .lay-grid > .col-4 img, .edit_area .lay-grid > .col-5 img, .edit_area .lay-grid > .col-6 img, .edit_area .lay-grid > .col-7 img, .edit_area .lay-grid > .col-8 img, .edit_area .lay-grid > .col-9 img, .edit_area .lay-grid > .col-10 img, .edit_area .lay-grid > .col-11 img, .edit_area .lay-grid > .col-12 img,
.cke_editable .lay-grid > .col-1 img,
.cke_editable .lay-grid > .col-2 img,
.cke_editable .lay-grid > .col-3 img,
.cke_editable .lay-grid > .col-4 img,
.cke_editable .lay-grid > .col-5 img,
.cke_editable .lay-grid > .col-6 img,
.cke_editable .lay-grid > .col-7 img,
.cke_editable .lay-grid > .col-8 img,
.cke_editable .lay-grid > .col-9 img,
.cke_editable .lay-grid > .col-10 img,
.cke_editable .lay-grid > .col-11 img,
.cke_editable .lay-grid > .col-12 img {
  width: 100% !important;
  height: auto !important;
  vertical-align: bottom;
}
.edit_area .lay-grid > div.col-1, .edit_area .lay-grid > div.col-2, .edit_area .lay-grid > div.col-3, .edit_area .lay-grid > div.col-4, .edit_area .lay-grid > div.col-5, .edit_area .lay-grid > div.col-6, .edit_area .lay-grid > div.col-7, .edit_area .lay-grid > div.col-8, .edit_area .lay-grid > div.col-9, .edit_area .lay-grid > div.col-10, .edit_area .lay-grid > div.col-11, .edit_area .lay-grid > div.col-12,
.cke_editable .lay-grid > div.col-1,
.cke_editable .lay-grid > div.col-2,
.cke_editable .lay-grid > div.col-3,
.cke_editable .lay-grid > div.col-4,
.cke_editable .lay-grid > div.col-5,
.cke_editable .lay-grid > div.col-6,
.cke_editable .lay-grid > div.col-7,
.cke_editable .lay-grid > div.col-8,
.cke_editable .lay-grid > div.col-9,
.cke_editable .lay-grid > div.col-10,
.cke_editable .lay-grid > div.col-11,
.cke_editable .lay-grid > div.col-12 {
  padding: 5px 0;
}
@media all and (min-width: 768px) {
  .edit_area .lay-grid > div.col-1, .edit_area .lay-grid > div.col-2, .edit_area .lay-grid > div.col-3, .edit_area .lay-grid > div.col-4, .edit_area .lay-grid > div.col-5, .edit_area .lay-grid > div.col-6, .edit_area .lay-grid > div.col-7, .edit_area .lay-grid > div.col-8, .edit_area .lay-grid > div.col-9, .edit_area .lay-grid > div.col-10, .edit_area .lay-grid > div.col-11, .edit_area .lay-grid > div.col-12,
  .cke_editable .lay-grid > div.col-1,
  .cke_editable .lay-grid > div.col-2,
  .cke_editable .lay-grid > div.col-3,
  .cke_editable .lay-grid > div.col-4,
  .cke_editable .lay-grid > div.col-5,
  .cke_editable .lay-grid > div.col-6,
  .cke_editable .lay-grid > div.col-7,
  .cke_editable .lay-grid > div.col-8,
  .cke_editable .lay-grid > div.col-9,
  .cke_editable .lay-grid > div.col-10,
  .cke_editable .lay-grid > div.col-11,
  .cke_editable .lay-grid > div.col-12 {
    padding: 5px 0;
  }
}
.edit_area .lay-grid > .col-1,
.cke_editable .lay-grid > .col-1 {
  width: calc(8.3333333333% - 5px);
}
.edit_area .lay-grid > .col-2,
.cke_editable .lay-grid > .col-2 {
  width: calc(16.6666666667% - 5px);
}
.edit_area .lay-grid > .col-3,
.cke_editable .lay-grid > .col-3 {
  width: calc(25% - 5px);
}
.edit_area .lay-grid > .col-4,
.cke_editable .lay-grid > .col-4 {
  width: calc(33.3333333333% - 5px);
}
.edit_area .lay-grid > .col-5,
.cke_editable .lay-grid > .col-5 {
  width: calc(41.6666666667% - 5px);
}
.edit_area .lay-grid > .col-6,
.cke_editable .lay-grid > .col-6 {
  width: calc(50% - 5px);
}
.edit_area .lay-grid > .col-7,
.cke_editable .lay-grid > .col-7 {
  width: calc(58.3333333333% - 5px);
}
.edit_area .lay-grid > .col-8,
.cke_editable .lay-grid > .col-8 {
  width: calc(66.6666666667% - 5px);
}
.edit_area .lay-grid > .col-9,
.cke_editable .lay-grid > .col-9 {
  width: calc(75% - 5px);
}
.edit_area .lay-grid > .col-10,
.cke_editable .lay-grid > .col-10 {
  width: calc(83.3333333333% - 5px);
}
.edit_area .lay-grid > .col-11,
.cke_editable .lay-grid > .col-11 {
  width: calc(91.6666666667% - 5px);
}
.edit_area .lay-grid > .col-12,
.cke_editable .lay-grid > .col-12 {
  width: calc(100% - 5px);
}
@media screen and (min-width:768px) and (max-width: 1019px) {
  .edit_area .lay-grid > .col-12,
  .cke_editable .lay-grid > .col-12 {
    width: calc(100% - 0px);
  }
}
@media all and (min-width: 768px) {
  .edit_area .lay-grid > .col-lg-1, .edit_area .lay-grid > .col-lg-2, .edit_area .lay-grid > .col-lg-3, .edit_area .lay-grid > .col-lg-4, .edit_area .lay-grid > .col-lg-5, .edit_area .lay-grid > .col-lg-6, .edit_area .lay-grid > .col-lg-7, .edit_area .lay-grid > .col-lg-8, .edit_area .lay-grid > .col-lg-9, .edit_area .lay-grid > .col-lg-10, .edit_area .lay-grid > .col-lg-11, .edit_area .lay-grid > .col-lg-12,
  .cke_editable .lay-grid > .col-lg-1,
  .cke_editable .lay-grid > .col-lg-2,
  .cke_editable .lay-grid > .col-lg-3,
  .cke_editable .lay-grid > .col-lg-4,
  .cke_editable .lay-grid > .col-lg-5,
  .cke_editable .lay-grid > .col-lg-6,
  .cke_editable .lay-grid > .col-lg-7,
  .cke_editable .lay-grid > .col-lg-8,
  .cke_editable .lay-grid > .col-lg-9,
  .cke_editable .lay-grid > .col-lg-10,
  .cke_editable .lay-grid > .col-lg-11,
  .cke_editable .lay-grid > .col-lg-12 {
    box-sizing: border-box;
  }
  .edit_area .lay-grid > .col-lg-1,
  .cke_editable .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 5px);
  }
  .edit_area .lay-grid > .col-lg-2,
  .cke_editable .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 5px);
  }
  .edit_area .lay-grid > .col-lg-3,
  .cke_editable .lay-grid > .col-lg-3 {
    width: calc(25% - 5px);
  }
  .edit_area .lay-grid > .col-lg-4,
  .cke_editable .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 5px);
  }
  .edit_area .lay-grid > .col-lg-5,
  .cke_editable .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 5px);
  }
  .edit_area .lay-grid > .col-lg-6,
  .cke_editable .lay-grid > .col-lg-6 {
    width: calc(50% - 5px);
  }
  .edit_area .lay-grid > .col-lg-7,
  .cke_editable .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 5px);
  }
  .edit_area .lay-grid > .col-lg-8,
  .cke_editable .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 5px);
  }
  .edit_area .lay-grid > .col-lg-9,
  .cke_editable .lay-grid > .col-lg-9 {
    width: calc(75% - 5px);
  }
  .edit_area .lay-grid > .col-lg-10,
  .cke_editable .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 5px);
  }
  .edit_area .lay-grid > .col-lg-11,
  .cke_editable .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 5px);
  }
  .edit_area .lay-grid > .col-lg-12,
  .cke_editable .lay-grid > .col-lg-12 {
    width: calc(100% - 5px);
  }
  .edit_area .lay-grid .card-box__item--lg-last,
  .cke_editable .lay-grid .card-box__item--lg-last {
    order: 1;
  }
}
.edit_area .card-box figcaption,
.cke_editable .card-box figcaption {
  font-size: 0.75rem;
  text-align: center;
}
.edit_area .div_info01,
.cke_editable .div_info01 {
  background: #c7d7ff;
  box-sizing: border-box;
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .edit_area .div_info01,
  .cke_editable .div_info01 {
    padding: 16px;
  }
}
.edit_area .div_info02,
.cke_editable .div_info02 {
  border: 2px solid #99b5fc;
  box-sizing: border-box;
  padding: 40px;
  background-color: #fff;
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .edit_area .div_info02,
  .cke_editable .div_info02 {
    padding: 16px;
  }
}
.edit_area .div_info03,
.cke_editable .div_info03 {
  background: #fdbaba;
  box-sizing: border-box;
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .edit_area .div_info03,
  .cke_editable .div_info03 {
    padding: 16px;
  }
}
.edit_area table,
.cke_editable table {
  width: 100%;
  border-collapse: collapse;
}
.edit_area table tr th,
.cke_editable table tr th {
  background: #f0eeee;
  padding: 10px;
  border: 1px solid #9c9c9c;
  font-size: 0.875rem;
  font-weight: bold;
}
.edit_area table tr td,
.cke_editable table tr td {
  padding: 10px;
  border: 1px solid #9c9c9c;
  background: #fff;
  font-size: 0.875rem;
}
.edit_area a,
.cke_editable a {
  color: #3f5eaa;
  text-decoration: underline;
  transition: all 0.4s;
}
.edit_area a:hover,
.cke_editable a:hover {
  color: #1f3c86;
  transition: all 0.4s;
}
.edit_area .g-map,
.cke_editable .g-map {
  width: 100% !important;
  height: 300px;
}

/* ------------------------------管理画面専用の記述(点線出したり) */
.cke_editable {
  max-width: var(--width-content);
  margin: 0 auto;
}
.cke_editable .lay-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cke_editable .lay-grid > .col-1, .cke_editable .lay-grid > .col-2, .cke_editable .lay-grid > .col-3, .cke_editable .lay-grid > .col-4, .cke_editable .lay-grid > .col-5, .cke_editable .lay-grid > .col-6, .cke_editable .lay-grid > .col-7, .cke_editable .lay-grid > .col-8, .cke_editable .lay-grid > .col-9, .cke_editable .lay-grid > .col-10, .cke_editable .lay-grid > .col-11, .cke_editable .lay-grid > .col-12 {
  padding: 5px 0;
  border-radius: 4px;
  box-sizing: border-box;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}
.cke_editable .lay-grid > .col-1 img, .cke_editable .lay-grid > .col-2 img, .cke_editable .lay-grid > .col-3 img, .cke_editable .lay-grid > .col-4 img, .cke_editable .lay-grid > .col-5 img, .cke_editable .lay-grid > .col-6 img, .cke_editable .lay-grid > .col-7 img, .cke_editable .lay-grid > .col-8 img, .cke_editable .lay-grid > .col-9 img, .cke_editable .lay-grid > .col-10 img, .cke_editable .lay-grid > .col-11 img, .cke_editable .lay-grid > .col-12 img {
  width: 100% !important;
  height: auto !important;
  vertical-align: bottom;
}
@media all and (min-width: 768px) {
  .cke_editable .lay-grid > div.col-1, .cke_editable .lay-grid > div.col-2, .cke_editable .lay-grid > div.col-3, .cke_editable .lay-grid > div.col-4, .cke_editable .lay-grid > div.col-5, .cke_editable .lay-grid > div.col-6, .cke_editable .lay-grid > div.col-7, .cke_editable .lay-grid > div.col-8, .cke_editable .lay-grid > div.col-9, .cke_editable .lay-grid > div.col-10, .cke_editable .lay-grid > div.col-11, .cke_editable .lay-grid > div.col-12 {
    padding: 5px 0;
  }
}
.cke_editable .lay-grid > .col-1 {
  width: calc(8.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-2 {
  width: calc(16.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-3 {
  width: calc(25% - 5px);
}
.cke_editable .lay-grid > .col-4 {
  width: calc(33.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-5 {
  width: calc(41.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-6 {
  width: calc(50% - 5px);
}
.cke_editable .lay-grid > .col-7 {
  width: calc(58.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-8 {
  width: calc(66.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-9 {
  width: calc(75% - 5px);
}
.cke_editable .lay-grid > .col-10 {
  width: calc(83.3333333333% - 5px);
}
.cke_editable .lay-grid > .col-11 {
  width: calc(91.6666666667% - 5px);
}
.cke_editable .lay-grid > .col-12 {
  width: calc(100% - 5px);
}
@media all and (min-width: 768px) {
  .cke_editable .lay-grid > .col-lg-1, .cke_editable .lay-grid > .col-lg-2, .cke_editable .lay-grid > .col-lg-3, .cke_editable .lay-grid > .col-lg-4, .cke_editable .lay-grid > .col-lg-5, .cke_editable .lay-grid > .col-lg-6, .cke_editable .lay-grid > .col-lg-7, .cke_editable .lay-grid > .col-lg-8, .cke_editable .lay-grid > .col-lg-9, .cke_editable .lay-grid > .col-lg-10, .cke_editable .lay-grid > .col-lg-11, .cke_editable .lay-grid > .col-lg-12 {
    box-sizing: border-box;
    border: dashed 1px #dedacd;
    border-radius: 4px;
  }
  .cke_editable .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-3 {
    width: calc(25% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-6 {
    width: calc(50% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-9 {
    width: calc(75% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 5px);
  }
  .cke_editable .lay-grid > .col-lg-12 {
    width: calc(100% - 5px);
  }
  .cke_editable .lay-grid .card-box__item--lg-last {
    order: 1;
  }
}
.cke_editable .card-box figcaption {
  font-size: var(--font-size-12);
  color: var(--default-black);
  text-align: center;
}
.cke_editable .ckeditor_divline {
  width: 100%;
  height: auto;
  padding-top: 2.17%;
  background: url(../common/ckeditor_divline.gif) no-repeat;
  background-size: contain;
}/*# sourceMappingURL=style.css.map */