@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#242424;
  --main-color3:#6a9dd6;
  --main-color4:#236fc7;
  --main-color5:#0751a5;
  --main-color6:#d3f5ee;
  --main-color7:#dee4a5;
  --main-color9:#0c8a16;
  --main-color10:#bee5f5;
  --main-color2:#333333;
  --lightGray1:#bdbdbd;
  --lightGray2:#eeeeee;
  --accentColor:#e95419;
}

/*--背景画像設定--*/
/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*ストライプ*/
/*--その他--*/
/*文字のデフォルト*/
div.ccm-page p {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 540px) {
  div.ccm-page p {
    font-size: 0.9em;
    margin-bottom: 0.75em;
  }
}
@media screen and (max-width: 540px) {
  div.ccm-page li {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 540px) {
  div.ccm-page th, div.ccm-page td {
    font-size: 0.9em;
  }
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 800px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 540px) {
  .pc-only {
    display: none;
  }
}

/*編集中のテキストブロックに余白を設ける*/
div.ccm-block-content-edit-inline textarea + div {
  padding: 5px;
}
div.ccm-block-content-edit-inline textarea + div table th, div.ccm-block-content-edit-inline textarea + div table td {
  min-width: 20px;
}

/*--カスタムクラス--*/
/*画像ブロック中央寄せ*/
.text-img-center {
  text-align: center;
}

/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 540px) {
  .container-width {
    padding: 0 0;
  }
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 3%;
}
@media screen and (max-width: 540px) {
  .container-width-s {
    padding: 0 0;
  }
}

/*スマートフォンで上下反転*/
@media screen and (max-width: 540px) {
  .sp-column-reverse .row {
    flex-direction: column-reverse;
  }
}

/*PC中央寄せ、スマートフォン左寄せ*/
.pc-center-sp-left p {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left p {
    text-align: left;
  }
}
.pc-center-sp-left div {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left div {
    text-align: left;
  }
}

/*背景色*/
.bg-color {
  background-color: var(--main-color10);
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 540px) {
  .bg-color {
    padding: 10px 5px;
  }
}

.bg-color-gray {
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 1px solid var(--lightGray1);
}
@media screen and (max-width: 540px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  background-color: var(--main-color1);
  padding: 20px 20px;
  border-radius: 10px;
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.09)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.12));
}

/*動画のレスポンシブ設定*/
video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
.scroll-x {
  overflow-x: scroll;
}

div.ccm-page table th, div.ccm-page table td {
  border: 1px solid #212121;
  padding: 0.5em 0.25em;
}

table.table_normal {
  white-space: nowrap;
}
table.table_normal th, table.table_normal td {
  border: 1px solid var(--lightGray1);
  padding: 0.5em 0.25em;
  min-width: 5.5em;
}
table.table_normal th {
  background-color: var(--lightGray2);
  font-weight: 600;
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-color2);
  background-color: var(--lightGray2);
  padding: 1em;
}
@media screen and (max-width: 540px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
  }
}
table.table_design01 th {
  background-color: var(--main-color5);
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 540px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*色丸ul*/
ul.color_maru_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.color_maru_ul li {
  position: relative;
  padding-left: 1.1em;
}
ul.color_maru_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color4);
  border-radius: 4px;
}

/*数字ol*/
ol.color_num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.color_num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 540px) {
  ol.color_num_ol li {
    font-size: 0.9em;
  }
}
ol.color_num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color4);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*色の囲み*/
span.color-border-block {
  display: inline-block;
  padding: 0 0.2em 0.05em 0.3em;
  margin-right: 0.3em;
  color: var(--main-color5);
  border: 1px solid var(--main-color5);
}

span.color-block {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: var(--main-color4);
  color: var(--main-color1);
  font-weight: 500;
  margin-right: 0.5em;
  border-radius: 5px;
}

.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 540px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*--◇グローバルエリア--*/
body {
  overflow-x: hidden;
}

main#main-wrap {
  min-height: 100vh;
}

main#left-main-wrap { /*左固定用*/
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-width: 60%;
  margin-left: 40%;
  min-height: 100vh;
  overflow-x: hidden;
}
@media screen and (max-width: 1025px) {
  main#left-main-wrap {
    max-width: 100%;
    margin-left: 0;
  }
}

#left-fixed {
  max-width: 40%;
  background-image: linear-gradient(to right, var(--main-color4) 0%, var(--main-color5) 100%);
}
main#left-main-wrap + footer {
  max-width: 60%;
  margin-left: 40%;
}
@media screen and (max-width: 1025px) {
  main#left-main-wrap + footer {
    max-width: 100%;
    margin-left: 0;
  }
}

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

.ccm-edit-mode header#org {
  margin-top: 70px;
}

/*header*/
header#org {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header#org #header-box {
  display: flex;
  height: 70px;
}
header#org #header-box .header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-left: 20px;
  padding-top: 15px;
}
header#org #header-box .header-navi {
  width: 100%;
}
header#org #header-box .header-navi .global-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 100px;
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  header#org #header-box .header-navi .global-btn {
    display: none;
  }
}
header#org #header-box .header-navi .global-btn a > div {
  color: var(--main-color1);
  padding: 0.5em 1em;
  border: 1px solid transparent;
  transition: all 0.2s;
}
header#org #header-box .header-navi .global-btn a:hover > div {
  color: var(--main-color1);
  background-color: var(--main-color4) !important;
  border-color: var(--main-color4);
}

/*ヘッダーのロゴの表示設定*/
.nagisamarulogo-a {
  display: block !important;
}
@media screen and (max-width: 1025px) {
  .nagisamarulogo-a {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .nagisamarulogo-a {
    display: none !important;
  }
}
@media screen and (max-width: 540px) {
  .nagisamarulogo-a {
    display: none !important;
  }
}

.nagisamarulogo-b {
  display: none !important;
}
@media screen and (max-width: 1025px) {
  .nagisamarulogo-b {
    display: block !important;
  }
}
@media screen and (max-width: 800px) {
  .nagisamarulogo-b {
    display: block !important;
  }
}
@media screen and (max-width: 540px) {
  .nagisamarulogo-b {
    display: block !important;
  }
}

/*ハンバーガーメニュー（jsにて切り替え）*/
#hamburger-btn {
  position: fixed;
  display: block;
  width: 75px;
  height: 70px;
  top: 0;
  right: 0;
  caret-color: transparent;
  cursor: pointer;
  z-index: 100;
}
#hamburger-btn .box {
  position: relative;
  padding: 26px 10px;
  background-color: #236fc7;
}
#hamburger-btn .box span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--main-color1);
  width: 55%;
}
#hamburger-btn .box span:nth-child(1) {
  top: 15px;
}
#hamburger-btn .box span:nth-child(2) {
  top: 23px;
}
#hamburger-btn .box span:nth-child(3) {
  top: 31px;
}
#hamburger-btn.active .box span:nth-of-type(1) {
  top: 18px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#hamburger-btn.active .box span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-btn.active .box span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}

#global-nav-area { /*グローバルナビ*/
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}
#global-nav-area.view {
  opacity: 1;
  pointer-events: all;
}
#global-nav-area.view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.4;
  z-index: 0;
}
#global-nav-area.view .global-nav {
  transform: translateX(0);
}
#global-nav-area .global-nav {
  position: relative;
  padding: 3%;
  padding-top: 100px;
  min-width: 25%;
  background-color: var(--main-color1);
  z-index: 1;
  transform: translateX(100%);
  transition: all 0.25s ease-out;
  opacity: 0.9;
}
@media screen and (max-width: 800px) {
  #global-nav-area .global-nav {
    padding-top: 80px;
  }
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
  }
}
#global-nav-area .global-nav > ul {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav > ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav > ul > li {
  margin-bottom: 1em;
}
#global-nav-area .global-nav > ul > li a {
  display: block;
  min-width: 250px;
  text-decoration: none;
  color: var(--main-color2);
  font-weight: 700;
  padding: 0.5em 0.5em 0.5em 0.5em;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 600;
}
#global-nav-area .global-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color4);
}

/*フッター*/
footer.footer-wrap {
  background-image: url(/index.php/download_file/25cd64a7-8772-413f-9d38-87668a40d7ba/9) !important;
  background-size: cover !important;
  background-position: left top !important;
  padding-top: 5vh;
}
@media screen and (max-width: 1025px) {
  footer.footer-wrap {
    color: var(--main-color1);
    padding-left: 0;
    font-size: 0.8em;
  }
}

.footer-wrap a {
  color: var(--main-color1);
}

#footer-box .footer-top {
  color: var(--main-color1);
  padding: 0 3%;
  padding-top: 30px;
  padding-bottom: 20px;
}
#footer-box .footer.footer-top a {
  color: var(--main-color1);
}
#footer-box .footer-center {
  color: var(--main-color1);
  padding: 0 3%;
  padding-bottom: 30px;
}
#footer-box .footer.footer-center a {
  color: var(--main-color1);
}
#footer-box .footer-bottom {
  text-align: center;
  font-size: 0.8em;
  padding: 1em 0.5em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: var(--main-color1);
}
@media screen and (max-width: 540px) {
  #footer-box .footer-bottom {
    padding-bottom: 3.5em;
  }
}
#footer-box .footer-bottom a {
  color: var(--main-color1);
}

.footer-access {
  display: flex;
}
.footer-access .item {
  width: 50%;
  padding: 10px 3%;
}

.footer-info .box ul.site-map {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}
.footer-info .box ul.site-map li {
  margin-bottom: 0.25em;
}
.footer-info .box ul.site-map li a {
  font-size: 0.95em;
  color: var(--main-color1);
  margin-right: 1em;
}
/*見出し*/
.ccm-page .page-h h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 540px) {
  .ccm-page .page-h h1 {
    font-size: 2.5rem;
  }
}
.ccm-page .page-h span {
  display: block;
  font-size: 0.95rem;
  font-family: "Roboto";
  font-weight: 600;
  color: var(--main-color5);
  margin-bottom: 0.5em;
}

.ccm-page h2 {
  position: relative;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 3px solid var(--lightGray1);
  margin-bottom: 0.6em;
}
@media screen and (max-width: 540px) {
  .ccm-page h2 {
    font-size: 1.45em;
  }
}
.ccm-page h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 35%;
  height: 3px;
  background-color: var(--main-color5);
}

.ccm-page .top-h {
  padding: 30px 0;
}
.ccm-page .top-h h2 {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0em;
  border-bottom: none;
  color: var(--main-color5);
}
.ccm-page .top-h h2::after {
  display: none;
}
.ccm-page .top-h .eng {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 3em;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-style: italic;
  color: var(--lightGray2);
  margin-bottom: -0.8em;
}

.ccm-page h3 {
  position: relative;
  color: var(--accentColor);
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 540px) {
  .ccm-page h3 {
    font-size: 1.15em;
  }
}

.ccm-page h4 {
  border-left: 8px solid var(--main-color5);
  padding-left: 0.4em;
  margin-bottom: 0.6em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  .ccm-page h4 {
    font-size: 1.1em;
  }
}

.ccm-page h5 {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color5);
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  .ccm-page h5 {
    font-size: 1.1em;
  }
}

.ccm-page h6 {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  .ccm-page h6 {
    font-size: 1em;
  }
}

.center-h {
  margin-bottom: 2.5em;
}
.center-h .jp {
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 540px) {
  .center-h .jp {
    font-size: 1.2em;
  }
}
.center-h .bar {
  position: relative;
  width: 80px;
  height: 5px;
  background-color: var(--main-color4);
  margin: 0 auto;
}
.center-h .bar::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background-color: var(--main-color5);
  top: 0;
  left: 0;
}

/*webボタン*/
div.ccm-page a.web-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  border: solid 2px var(--accentColor);
  padding: 0.35em 1.5em 0.4em 1.5em;
  color: var(--accentColor);
  background-color: var(--main-color1);
  font-weight: 600;
  border-radius: 1.5em;
  transition: all 0.2s;
}
div.ccm-page a.web-btn:hover {
  color: var(--main-color1);
  background-color: var(--accentColor);
}
@media screen and (max-width: 540px) {
  div.ccm-page a.web-btn {
    transform: scale(0.8);
    min-width: 170px;
  }
}

div.ccm-page a.web-btn2 {
  display: inline-block;
  padding: 0.5em 0.8em;
  background-color: var(--main-color4);
  color: var(--main-color1);
  font-weight: 500;
  transition: all 0.2s;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
div.ccm-page a.web-btn2:hover {
  background-color: var(--main-color5);
}
@media screen and (max-width: 540px) {
  div.ccm-page a.web-btn2 {
    transform: scale(0.8);
    min-width: 170px;
  }
}

/*--トップページ--*/
.tyouka-link {
  position: relative;
}
.tyouka-link a {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
}
@media screen and (max-width: 540px) {
  .tyouka-link a {
    width: 130px;
  }
}

.calender-box {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 800px) {
  .calender-box {
    aspect-ratio: 1/1;
  }
}

.top-message {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .top-message {
    grid-template-columns: 1fr;
  }
}
.top-message .text .catch {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--main-color5);
  margin-bottom: 0.5em;
}
.sea-illust-a {
  padding-left: 20px !important;
}
@media screen and (max-width: 540px) {
  .sea-illust-a {
    width: 30%;
    margin-bottom: 50px !important;
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-b {
    width: 50%;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-c {
    width: 30%;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-d {
    width: 30%;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-e {
    width: 50%;
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-f {
    width: 50%;
  }
}

@media screen and (max-width: 540px) {
  .sea-illust-g {
    width: 30%;
  }
}

/* スクロールしたらふわっとフェードイン */
.effect-fade {
  opacity: 0;
  transform: translate(0, 100px); /* フェードインで動く高さを指定 */
  transition: all 1300ms; /* フェードインにかかる時間を指定 */
}

#effect-fade {
  opacity: 0;
  transform: translate(0, 100px); /* フェードインで動く高さを指定 */
  transition: all 1300ms; /* フェードインにかかる時間を指定 */
}

.effect-fade-B {
  opacity: 0;
  transform: translate(0, 0px); /* フェードインで動く高さを指定 */
  transition: all 1300ms; /* フェードインにかかる時間を指定 */
}

.effect-fade-C {
  opacity: 0;
  transform: translate(0, -100px); /* フェードインで動く高さを指定 */
  transition: all 1300ms; /* フェードインにかかる時間を指定 */
}

.effect-fade-D {
  opacity: 0;
  transform: translate(0, 0px); /* フェードインで動く高さを指定 */
  transition: all 3000ms; /* フェードインにかかる時間を指定 */
}

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in {
  animation-name: fade-in;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールで横からスライドインしてくるB */
.fade-in-leftB {
  opacity: 0;
  transition-duration: 1s;
  transform: translateX(-300px);
}

.fade-in-leftB.effect {
  transform: translateX(0);
  opacity: 1;
}

.fade-in-rightB {
  opacity: 0;
  transition-duration: 1s;
  transform: translateX(300px);
}

.fade-in-rightB.effect {
  transform: translateX(0);
  opacity: 1;
}

.fade-in-leftC {
  opacity: 0;
  transition-duration: 1s;
  transform: translateX(-300px);
}

.fade-in-leftC.effect {
  transform: translateX(0);
  opacity: 1;
}

.fade-in-rightC {
  opacity: 0;
  transition-duration: 1s;
  transform: translateX(300px);
}

.fade-in-rightC.effect {
  transform: translateX(0);
  opacity: 1;
}

.fade-in-leftD {
  opacity: 0;
  transition-duration: 0.6s;
  transform: translateX(-300px);
}

.fade-in-leftD.effect {
  transform: translateX(0);
  opacity: 1;
}

.fade-in-rightD {
  opacity: 0;
  transition-duration: 0.6s;
  transform: translateX(300px);
}

.fade-in-leftD.effect {
  transform: translateX(0);
  opacity: 1;
}

/* スクロールで横からスライドインしてくる */
.fade-in-right {
  animation-name: fade-in-rightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in-rightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Googleカレンダーの設定 */
.calendar-waku {
  display: flex !important;
  justify-content: space-between;
  width: 100% !important;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 1280px) {
  .calendar-waku {
    display: block !important;
  }
}
@media screen and (max-width: 540px) {
  .calendar-waku {
    display: block !important;
  }
}

.monthcal {
  width: 48% !important;
}
@media screen and (max-width: 1280px) {
  .monthcal {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 540px) {
  .monthcal {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
}

.nextmonthcal {
  width: 48% !important;
}
@media screen and (max-width: 1280px) {
  .nextmonthcal {
    width: 100% !important;
  }
}
@media screen and (max-width: 540px) {
  .nextmonthcal {
    width: 100% !important;
  }
}

/* お知らせの記事一覧設定 */
div.ccm-block-page-list-page-entry, div.ccm-block-page-list-page-entry-horizontal {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px !important;
}/*# sourceMappingURL=nagisamaru.css.map */