@charset "utf-8";

/*========================================================================*\

$root

\*========================================================================*/

/* -- ここはサイトごとに変更 -- */
:root {
  --max-width: 1200px;
}

:root {
  --color1-start: rgba(173, 216, 230, 0.4);
  --color1-end: rgba(173, 216, 230, 0.75);

  --color2-start: rgba(144, 238, 144, 0.35);
  --color2-end: rgba(144, 238, 144, 0.7);
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background-color: #fff;
  background-image:
    radial-gradient(circle, var(--color1-start) 0%, transparent 60%),
    radial-gradient(circle, var(--color2-start) 0%, transparent 65%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  animation: bg-soft-move 25s ease-in-out infinite alternate;
}

@keyframes bg-soft-move {
  0% {
    background-position:
      20% 80%,
      80% 20%;
    --color1-start: rgba(173, 216, 230, 0.4);
    --color2-start: rgba(144, 238, 144, 0.35);
  }
  50% {
    background-position:
      35% 60%,
      65% 40%;
    --color1-start: rgba(173, 216, 230, 0.55);
    --color2-start: rgba(144, 238, 144, 0.5);
  }
  100% {
    background-position:
      50% 50%,
      50% 80%;
    --color1-start: rgba(173, 216, 230, 0.75);
    --color2-start: rgba(144, 238, 144, 0.7);
  }
}

.inner {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--inner-padding);
  margin: 0 auto;
}

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

/*========================================================================*\

$body

\*========================================================================*/

body,
html {
  height: 100%;
}

html {
  /*scroll-padding-top: 100px;*/
}

#wrapper {
  overflow: hidden;
  position: relative;
}

.inner {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--inner-padding);
  margin: 0 auto;
}

/*========================================================================*\

$topmain

\*========================================================================*/

#topmain .mainInner {
  position: relative;
}

.sliderMain {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/*========================================================================*\

$newsSection

\*========================================================================*/

#Co #newsSection .sectionInner .newsBoxArea {
  background: rgba(6, 141, 226, 0.1);
  padding: 3.125rem;
  border-radius: 25px;
}

#Co #newsSection .sectionInner h2 {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 0;
  line-height: 1.2;
}

#Co #newsSection .sectionInner .sub {
  text-align: center;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 1.5625rem;
  font-weight: 700;
}

#Co #newsSection .sectionInner .newsItem {
  position: relative;
}

#Co #newsSection .sectionInner .newsItem figure {
  position: absolute;
  left: 0;
  top: 0;
}

#Co #newsSection .sectionInner #newsBox {
  padding-left: 127px;
}

#Co #newsSection .sectionInner .newsBoxInner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

#Co #newsSection .sectionInner .newsBoxInner .day {
  width: 190px;
  margin-bottom: 0;
}

#Co #newsSection .sectionInner #newsBox h4 {
  flex: 1;
}

#Co #newsSection .sectionInner #newsBox h4,
#Co #newsSection .sectionInner #newsBox p,
#Co #newsSection .sectionInner #newsBox a {
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.6;
}

#Co #newsSection .sectionInner #newsBox a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

#Co #newsSection .sectionInner .btn {
  width: 230px;
}

#Co #newsSection .sectionInner .btn a {
  color: var(--color-primary);
  background: #ffffff;
}

#Co #newsSection .sectionInner .btn a::after {
  content: none;
}

/*========================================================================*\

$activitiesSection

\*========================================================================*/
#Co #activitiesSection .sectionInner h2 {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 0;
  line-height: 1.2;
}

#Co #activitiesSection .sectionInner .sub {
  text-align: center;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 1.5625rem;
  font-weight: 700;
}

#Co #activitiesSection .sectionInner #activitiesBox {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: row-reverse;
}

#Co #activitiesSection .sectionInner #activitiesBox .activitiesBoxInner {
  width: calc(100% - 434px);
}

#Co
  #activitiesSection
  .sectionInner
  #activitiesBox
  .activitiesBoxInner:last-child {
  margin-right: 2.5rem;
  width: 394px;
}

#Co #activitiesSection .sectionInner #activitiesBox p {
  font-size: 1.125rem;
  line-height: 2.4;
  font-weight: 700;
}

#Co #activitiesSection .sectionInner #activitiesBox .catch {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.floating {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-1.5%);
  }
  100% {
    transform: translateY(1.5%);
  }
}

#Co #activitiesSection .sectionInner .businessBox {
  background: var(--color-primary);
  padding: 3.125rem;
  border-radius: 25px;
}

#Co #activitiesSection .sectionInner .businessBox .box03Inner {
  display: flex;
  flex-direction: column;
}

#Co #activitiesSection .sectionInner .businessBox .box03Inner .btn {
  margin-top: auto;
  padding-top: 0;
}

#Co #activitiesSection .sectionInner .businessBox h3 {
  text-align: center;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

#Co #activitiesSection .sectionInner .businessBox p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

#Co #activitiesSection .sectionInner .businessBox figure {
  margin-bottom: 1.875rem;
}

#Co #activitiesSection .sectionInner .businessBox .btn {
  width: 230px;
}

#Co #activitiesSection .sectionInner .businessBox .btn a {
  color: var(--color-primary);
  background: #ffffff;
}

#Co #activitiesSection .sectionInner .businessBox .btn a::after {
  content: none;
}

/*========================================================================*\

$footer

\*========================================================================*/

footer {
  text-align: center;
  padding-bottom: 9.375rem;
}

footer p {
  font-size: 0.875rem;
  line-height: 1.6;
}

footer .tel a {
  font-size: 2rem;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
}

footer .tel a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 27px;
  background-image: url(../images/ico_tel.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

footer #footLogo {
  margin-bottom: 0.625rem;
}

footer #copy {
  margin-top: 3.75rem;
  font-size: 0.6875rem;
}

/*========================================================================*\

$localmain　

\*========================================================================*/

#localmain .mainInner {
  background: var(--color-primary);
  border-radius: 0 0 20px 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 1.875rem auto;
  padding: 0 3.125rem;
  height: 150px;
  display: flex;
  align-items: center;
  position: relative;
}

#localmain .mainInner h2 {
  color: #ffffff;
  font-size: 2.5rem;
}

#localmain .mainInner .character {
  position: absolute;
  bottom: 5px;
  right: 50px;
}

/*========================================================================*\

$page

\*========================================================================*/

#Co .page h2 {
  font-size: 2.25rem;
  border-left: 2px solid var(--color-primary);
  padding-left: 1.4375rem;
  margin-bottom: 2.5rem !important;
}

#Co .page h3 {
  color: var(--color-primary);
  font-size: 1.625rem;
  background: #eef7fb;
  border-radius: 10px;
  padding: 0.9375rem 1.875rem;
  line-height: 1.6;
  margin-bottom: 2.5rem !important;
}

#Co .page h4 {
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.8;
  border-bottom: 2.5px dashed #c6c6c6;
  font-weight: 600;
  clear: both;
  position: relative;
  padding-left: 1.8125rem;
}

#Co .page h4::before {
  background: var(--color-primary);
  border-radius: 50px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 13px;
  width: 16px;
}

#Co .page h5 {
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-size: 1.125rem;
}

#Co .page section:first-child .inner.sectionInner {
  padding-top: 1.25rem !important;
}

#Co .page .itemArea {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

#Co .page .itemArea .itemAreaInner {
  width: calc(100% - 210px);
}

#Co .page .itemArea .itemAreaInner:first-child {
  width: 160px;
}

#Co .page .itemArea.w250 .itemAreaInner {
  width: calc(100% - 300px);
}

#Co .page .itemArea.w250 .itemAreaInner:first-child {
  width: 250px;
}

#Co .page .itemArea.w250 .itemAreaInner:first-child li {
  font-size: 0.875rem;
}

#Co .page .itemArea.w250 .itemAreaInner:first-child li:last-child {
  margin-top: 0.9375rem;
}

#Co .page .photoBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.pctL {
  float: left;
  margin-right: 1.875rem;
  margin-bottom: 1.875rem;
}

.pctR {
  float: right;
  margin-left: 1.875rem;
}

#Co .page .boxC .box03Inner {
  background-color: #eef7fb;
  border-radius: 20px;
}

#Co .page .boxC .box03Inner .itemBox {
  padding: 0.625rem 1.25rem 1.25rem 1.25rem;
}

#Co .page .boxC .box03Inner h5 {
  padding: 0.9375rem 0;
  text-align: center;
  margin: 0 !important;
  background: var(--color-primary);
  border-radius: 20px 20px 0 0;
  color: #ffffff;
}

#Co .page .boxC .box03Inner ul {
  margin: 0 !important;
}

#Co .page .boxC .box03Inner li {
  width: 100%;
  line-height: 1.7;
  margin-top: 0.625rem;
}

/*========================================================================*\

$disclosurepage

\*========================================================================*/

#Co #disclosurepage th {
  width: 13%;
}

/*========================================================================*\

$preventionpage

\*========================================================================*/

#Co #preventionpage th {
  text-align: center;
  width: 15%;
}

#Co #preventionpage td ul {
  display: flex;
  flex-wrap: wrap;
}

#Co #preventionpage td ul li {
  width: calc(100% / 9);
}

#Co #preventionpage td ul li a {
  text-decoration: none;
  color: var(--color-text);
}

/*========================================================================*\

$admissionpage

\*========================================================================*/

#Co #admissionpage .contactArea p {
  line-height: 1.4;
}

#Co #admissionpage .contactArea .tel {
  margin-bottom: 0.3125rem;
}

#Co #admissionpage .contactArea .tel a {
  font-size: 2rem;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.6;
}

#Co #admissionpage .contactArea .tel a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 27px;
  background-image: url(../images/ico_tel_b.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

#Co #admissionpage .contactArea .time {
  font-size: 0.8125rem;
}

#Co #admissionpage .contactArea .time span {
  background: #eef7fb;
  color: var(--color-primary);
  padding: 0 8px 3px 8px;
  border-radius: 4px;
}

/*========================================================================*\

$accesspage

\*========================================================================*/

#Co #accesspage .accessBox .box03Inner h5:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 33px;
  background-image: url(../images/about/ico_bas.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}

#Co #accesspage .accessBox .box03Inner:nth-child(2) h5:before {
  background-image: url(../images/about/ico_train.png);
}

#Co #accesspage .accessBox .box03Inner:nth-child(3) h5:before {
  background-image: url(../images/about/ico_taxi.png);
}

/*========================================================================*\

$disasterpage

\*========================================================================*/

#Co #disasterpage .box04 li img {
  border-radius: 0.625rem;
  height: 217px;
  object-fit: cover;
}

/*========================================================================*\

$loginpage

\*========================================================================*/

#Co #loginpage .loginBox {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 50px;
  background-color: #f3f3f3;
  border: solid 1px #dfdfdf;
  border-radius: 10px;
}

#Co #loginpage .loginBox input[type="password"] {
  font-size: 18px;
  line-height: 1.33333333;
  width: 450px;
  border-width: 0.0625rem;
  padding: 0.625rem 0.9375rem;
  margin: 0 0 10px 0;
  min-height: 40px;
  background: #ffffff;
  max-height: none;
}

#Co #loginpage .loginBox input[type="submit"] {
  border-radius: 10px;
  margin: 0.9375rem auto 0 auto;
  padding: 15px 0;
  background-color: #1e4397;
  width: 250px;
  color: #fff;
  font-size: 18px;
  border: none 0px;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
}

/*========================================================================*\

$newsletterpage

\*========================================================================*/

#Co #newsletterpage .newsletterBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3.125rem;
}

#Co #newsletterpage .newsletterBox .box02 {
  align-items: center;
}

#Co #newsletterpage .newsletterBox th {
  width: 15%;
}

#Co #newsletterpage .box02 {
  border-bottom: 2px dashed #c6c6c6;
  color: #000;
  text-decoration: none;
  padding-bottom: 1.25rem;
  position: relative;
  padding: 0 3.125rem 1.25rem 0;
}

#Co #newsletterpage .box02 .box02Inner {
  width: calc(100% - 110px);
}

#Co #newsletterpage .box02 .box02Inner:first-child {
  width: 80px;
}

#Co #newsletterpage .box02 .box02Inner:first-child img {
  width: 100%;
  height: 113px;
  object-fit: cover;
}

#Co #newsletterpage .box02 .box02Inner h5 {
  margin: 0 0 0.3125rem 0 !important;
  padding: 0;
}

#Co #newsletterpage .box02 .box02Inner p {
  line-height: 1.6;
  margin: 0 !important;
  font-size: 0.9375rem;
  opacity: 0.8;
}

#Co #newsletterpage .box02:hover .box02Inner h5,
#Co #newsletterpage .box02:hover .box02Inner p {
  color: var(--color-primary);
}

#Co #newsletterpage .bucknumberBox li {
  border: 1px solid #c6c6c6;
  border-radius: 10px;
}

#Co #newsletterpage .bucknumberBox li a {
  padding: 0.9375rem;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}

#Co #newsletterpage .bucknumberBox li a:hover {
  background: #eef7fb;
  border-radius: 10px;
}

#Co #newsletterpage .bucknumberBox li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  transform: translateY(-50%) rotate(45deg);
  transition:
    transform 0.3s,
    border 0.3s;
}

#Co .page .colorBox {
  margin-top: 3.125rem !important;
}

#Co .page .colorBox h4 {
  margin-top: 0 !important;
}

#Co .page .colorBox h5,
#Co .page .colorBox li {
  margin: 0 !important;
  line-height: 1.6;
}

#Co .page .oshiraseBox .oshiraseBoxInner {
  border-bottom: 2px dashed #c6c6c6;
  padding: 2.5rem 0;
  position: relative;
}

#Co .page .oshiraseBox .oshiraseBoxInner:first-child {
  padding: 0 0 2.5rem 0;
}

#Co .page .oshiraseBox .oshiraseBoxInner::before,
#Co .page .oshiraseBox .oshiraseBoxInner::after,
#Co #newsletterpage .box02::before,
#Co #newsletterpage .box02::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

#Co .page .oshiraseBox .oshiraseBoxInner::before,
#Co #newsletterpage .box02::before {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: var(--color-primary);
}

#Co #newsletterpage .box02::before {
  background: rgb(123, 91, 199) !important;
}

#Co #protectionpage .oshiraseBox .oshiraseBoxInner::before {
  background: rgb(47, 79, 143) !important;
}

#Co #memberpage .oshiraseBox .oshiraseBoxInner::before {
  background: rgb(135, 197, 69) !important;
}

#Co #academicpage .oshiraseBox .oshiraseBoxInner::before {
  background: #00a99d;
}

#Co #memberpage.memberonlypage .oshiraseBox .oshiraseBoxInner::before {
  background: #c95ba4 !important;
}

#Co .page .oshiraseBox .oshiraseBoxInner::after,
#Co #newsletterpage .box02::after {
  right: 4px;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 6px solid #fff;
}

#Co #newsletterpage .box02 h5,
#Co .page .oshiraseBox .oshiraseBoxInner h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.625rem 0 !important;
  line-height: 1.4;
  padding: 0 !important;
  display: flex;
  align-items: center;
}

#Co #newsletterpage .box02 .box02Inner p,
#Co .page .oshiraseBox .oshiraseBoxInner p a {
  text-decoration: none;
  color: #000000;
  font-size: 1.125rem;
}

#Co .page .oshiraseBox .oshiraseBoxInner p a:hover {
  text-decoration: none;
  color: #000000;
  color: var(--color-primary);
}

#Co .page #detailSection h2 .day {
  font-size: 1rem;
  line-height: 0.8;
  display: block;
}

#Co .page #detailSection h2 {
  font-size: 1.75rem;
}

/*========================================================================*\

$protectionpage

\*========================================================================*/

#Co #protectionpage .protectionBox .tbl {
  table-layout: fixed;
}

#Co #protectionpage .flowBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#Co #protectionpage .flowBox .flowBoxInner {
  width: 22.5%;
  padding: 30px 20px;
  margin: 0;
  border: 3px solid var(--color-primary);
  position: relative;
  border-radius: 20px;
}

#Co #protectionpage .flowBox .flowBoxInner:first-child:before {
  content: none;
}

#Co #protectionpage .flowBox .flowBoxInner::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
  position: absolute;
  top: calc(50% - 14px);
  left: -30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#Co #protectionpage .flowBox .flowBoxInner .icon {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

#Co #protectionpage .flowBox .flowBoxInner .icon::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: var(--color-primary);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#Co #protectionpage .flowBox .flowBoxInner h5 {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--color-primary);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  text-align: center;
  margin: 0 0 0.625rem 0 !important;
}

#Co #protectionpage .flowBox .flowBoxInner li {
  font-size: 1rem;
  line-height: 1.7;
}

#Co #workpage #workSection .box04 li {
  text-align: center;
  line-height: 1.6;
  font-size: 0.875rem;
}

#Co #workpage #workSection .box04 img {
  margin-bottom: 0.3125rem;
  border-radius: 10px;
}

/*========================================================================*\

$searchpage

\*========================================================================*/

#Co #searchpage .tbl {
  table-layout: fixed;
}

#Co #searchpage .tbl th,
#Co #searchpage .tbl td {
  font-size: 0.9375rem;
}
