@charset "UTF-8";
/*メディアクエリー
---------------------------------------------*/
/*変数
--------------------------------------------*/
/*
$pcFontXs: 10px;
$pcFontS: 12px;
$pcFontM: 14px;
$pcFontL: 22px;
$pcSpace1: 19px;
$pcSpace2: 38px;
$pcSpace3: 57px;
$red: #000;
$spFontS: 10px;
$spFontM: 14px;
$spFontL: 16px;
*/
/* Common
---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  font-feature-settings: "palt";
  /*CSSでカーニング調整をして先頭が 「 （カッコ）の左端を揃える*/
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

/* 保存禁止の画像 */
img.selectNone,
.goods_list li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

a {
  color: #fff;
  transition: 0.2s;
}
@media screen and (min-width: 1000px) {
  a:hover {
    opacity: 1;
    animation-duration: .5s;
    animation-name: flash;
  }
}

@keyframes flash {
  0% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

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

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

@media screen and (min-width: 1000px) {
  .pc_none {
    display: none;
  }
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* -----------------------------
　　スマホ用サイドメニュー
----------------------------- */
.side_navigation {
  transition: 1s;
  z-index: 8888;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #003f8e;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  /*
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  */
  display: none;
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .drawer-menu {
    display: none;
  }
}
.drawer-menu .inner_1 {
  position: relative;
  width: 100%;
  height: 100%;
}
.drawer-menu .inner_1 .inner_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding-top: 50px;
}
@media screen and (min-width: 1000px) {
  .drawer-menu .inner_1 .inner_2 {
    width: 50%;
  }
}
.drawer-menu .inner_1 ul li {
  width: 100%;
  margin-bottom: 15px;
  opacity: 0;
}
.drawer-menu .inner_1 ul li:nth-child(1) {
  animation: navLeft 0.7s 0.1s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(2) {
  animation: navLeft 0.7s 0.2s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(3) {
  animation: navLeft 0.7s 0.3s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(4) {
  animation: navLeft 0.7s 0.4s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(5) {
  animation: navLeft 0.7s 0.5s forwards;
}
.drawer-menu .inner_1 ul li:nth-child(6) {
  animation: navLeft 0.7s 0.6s forwards;
}
.drawer-menu .inner_1 ul li a {
  text-decoration: none;
  letter-spacing: normal;
}
.drawer-menu .inner_1 ul li a .eng {
  font-size: 2.4em;
  line-height: 1;
  padding-bottom: 5px;
  display: block;
}
.drawer-menu .inner_1 ul li a .jpn {
  font-size: .8em;
  display: block;
  letter-spacing: 0.2em;
}
.drawer-menu .inner_1 .drawer-menu_others {
  margin-top: 60px;
  animation: navOthers 1s 1.2s forwards;
  opacity: 0;
  letter-spacing: normal;
  display: flex;
}
.drawer-menu .inner_1 .drawer-menu_others a {
  text-decoration: none;
  padding: 5px 0;
}
.drawer-menu .inner_1 .drawer-menu_others .tw {
  margin-bottom: 8px;
}
.drawer-menu .inner_1 .drawer-menu_others .tw i {
  padding-right: 12px;
  font-size: 1.3em;
}
.drawer-menu .inner_1 .drawer-menu_others .byt {
  margin-left: 40px;
}
.drawer-menu .inner_1 .drawer-menu_others .byt img {
  width: auto;
  height: 1.3em;
  vertical-align: middle;
  padding-right: 12px;
}

@keyframes navLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes navOthers {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header_menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 4px;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-left: 2px solid #fff;
  z-index: 100;
}
@media screen and (min-width: 1000px) {
  .header_menuBtn {
    display: none;
  }
}
.header_menuBtn .dot {
  border-radius: 50%;
  background-color: #fff;
  transition-property: #fff, transform;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
  width: 4px;
  height: 4px;
}

.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
    /*
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
    */
  opacity: 1;
  display: block;
  z-index: 4;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
  width: 35px;
  top: 14px;
  background-color: #fff !important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 35px;
  top: 38px;
  background-color: #fff !important;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.close-menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

/* ---------------------------------------------------
 Common
--------------------------------------------------- */
body.fadeIn_body {
  animation: fadeInbody 1s ease 0s 1 normal;
  -webkit-animation: fadeInbody 1s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Loding --- 
.loding{
  width: 100vw;
  height: 100vh;
  background: url("../images/opening_sp.png") no-repeat center center / contain;
  background-color: #000;
  @include mq(pc) {
    background-image: url("../images/opening_pc.png");
  }
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
  z-index: 9999;
  
  &.close{
    animation: fadeOut 1s ease-in 0s forwards;
    opacity: 0;
    display: none;
  }
}
@keyframes fadeOut {
  0% { opacity: 1; display: block;}
  50% { opacity: 0; display: block;}
  100% { opacity: 0; display: none; }
}
:?


/* --- Header --- */
header {
  width: 100%;
  height: 54px;
  background: #003f8e;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 1000px) {
  header {
    height: 62px;
  }
}
header .logo img {
  width: auto;
  height: 22px;
  margin: 14px 0 0 12px;
}
@media screen and (min-width: 1000px) {
  header .logo img {
    height: 20px;
    margin: 18px 0 0 26px;
  }
}
header nav.header_nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  header nav.header_nav {
    display: block;
    position: absolute;
    top: 11px;
    right: 30px;
  }
  header nav.header_nav a, header nav.header_nav .none_url {
    display: inline-block;
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    letter-spacing: normal;
    font-size: 1.2em;
  }
  header nav.header_nav a.header_tw, header nav.header_nav .none_url.header_tw {
    border: 1px solid #fff;
    padding: 9px;
    vertical-align: top;
    border-radius: 40px;
    line-height: 1;
    font-size: .9em;
  }
}

/* --- Footer --- */
#footer {
  position: relative;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (min-width: 1000px) {
  #footer.index_footer {
    display: none;
  }
}
#footer ul .navList {
  display: inline-flex;
  padding-bottom: 20px;
  font-size: 1.6em;
  line-height: 1;
}
#footer ul li {
  padding: 0 10px;
}
@media screen and (min-width: 1000px) {
  #footer ul li {
    padding: 0 15px;
  }
}
#footer ul li a {
  text-decoration: none;
}
#footer .note {
  font-size: 10px;
  color: #fff;
  opacity: .7;
}
#footer .logo_daikouryuten {
  width: 16%;
  max-width: 100px;
  float: right;
}
#footer .logo_daikouryuten a:hover {
  opacity: .7;
}
#footer .logo a {
  display: inline-block;
  width: 90px;
  margin: 50px 0 0 0;
}
#footer .logo a:hover {
  opacity: .7;
}
#footer .copyright {
  font-size: 10px;
  margin-top: 45px;
}

/* --- アニメーション --- */
.fadein_slide {
  opacity: 0;
  transform: translateY(40px);
  /* 下からスライドフェードイン */
  transition: all .7s 0s ease;
}

/* -- フォント -- */
.font_Prohibition {
  font-family: prohibition, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* -- 色指定 -- */
/* --- ボタン --- */
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6.9px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
}

.btn a {
  display: block;
  width: 250px;
  height: 90px;
  padding: 32px 38px;
  margin: 0 auto;
  line-height: 1;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  border-radius: 45px;
  text-decoration: none;
}
.btn a .tx {
  font-size: 1.6em;
  letter-spacing: normal;
}
@media screen and (min-width: 1000px) {
  .btn a .tx {
    line-height: .9;
  }
}
.btn a .triangle {
  top: 40px;
  right: 30px;
}
.btn.blue_btn a {
  border: 1px solid #3cb8f8;
  color: #3cb8f8;
}
.btn.blue_btn a .triangle {
  border-color: transparent transparent transparent #3cb8f8;
}

/* -- 他 -- */
.common_container {
  width: 100%;
  padding: 0 7%;
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
h2.index_contentTitle {
  text-align: center;
  font-size: 55px;
  padding-bottom: 35px;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  h2.index_contentTitle {
    text-align: left;
  }
}

/* PC用横スライド */
@media screen and (min-width: 1000px) {
  .yoko_slide_content {
    display: flex;
    overflow-x: auto;
    /*white-space: nowrap;*/
    -webkit-overflow-scrolling: touch;
  }
  .yoko_slide_content::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .top_date,
  #intro,
  #news,
  #outline,
  #highlight {
    width: 500px;
    flex-shrink: 0;
  }
}

/* ---------------------------------------------------
 メインビジュアル
--------------------------------------------------- */
#main {
  width: 100%;
  position: fixed;
  top: 50px;
}
@media screen and (min-width: 1000px) {
  #main {
    top: 62px;
  }
}
#main div {
  width: 100%;
  /*max-width: 1600px;*/
  height: calc(100vh - 128px);
  /*padding-top: 150.9661835749%;*/
  background: url("../images/main_sp.png") no-repeat center center/contain;
}
@media screen and (min-width: 1000px) {
  #main div {
    height: calc(100vh - 62px);
    background: url("../images/main_pc.png") no-repeat center center/contain;
  }
}

.top_title {
  width: 100%;
  position: relative;
  margin-top: 110vh;
}
@media screen and (min-width: 1000px) {
  .top_title {
    display: none;
  }
}

.top_date {
  position: relative;
  width: 100%;
  color: #3cb8f8;
  text-align: center;
  font-size: 3em;
  line-height: 1;
  padding: 40px 0 60px;
}
@media screen and (min-width: 1000px) {
  .top_date {
    padding: 30vh 100px 0 100vw;
    display: table;
    font-size: 100px;
  }
}

/* ---------------------------------------------------
 イントロ
--------------------------------------------------- */
#intro,
#news,
#outline,
#highlight {
  border-top: 2px solid #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 63, 142, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  #intro,
  #news,
  #outline,
  #highlight {
    border-left: 2px solid #fff;
    border-top: 0;
    padding: 30px 40px;
    margin-top: 62px;
  }
}

#intro .midashi {
  font-size: 1.6em;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  padding-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  #intro .midashi {
    font-size: 1.4em;
    text-align: left;
    line-height: 2;
  }
}
@media screen and (min-width: 1000px) {
  #intro {
    width: 580px;
  }
  #intro .sub {
    line-height: 2.3;
    font-size: 1.1em;
  }
}

.bnr_content {
  border-top: 0;
  padding-top: 60px;
}
@media screen and (min-width: 1000px) {
  .bnr_content {
    width: 360px;
  }
}
.bnr_content .bnr_jizenchusen {
  margin-bottom: 10px;
}

.bnr_info img, .bnr_jizenchusen img {
  border-radius: 3px;
}

/* ---------------------------------------------------
 NEWS
--------------------------------------------------- */
#news ul {
  margin-bottom: 40px;
}
#news ul li {
  width: 100%;
  padding: 20px 1%;
  border-top: 1px solid #6a89b4;
}
#news ul li:last-child {
  border-bottom: 1px solid #6a89b4;
}
#news ul li a {
  color: #fff;
  text-decoration: none;
}
#news ul li a div {
  font-size: 1.2em;
  padding-bottom: 3px;
  letter-spacing: 0.01em;
  color: #ba88f3;
}
@media screen and (min-width: 1000px) {
  #news ul li a {
    display: flex;
  }
  #news ul li a div {
    width: 30%;
    padding: 0;
  }
  #news ul li a p {
    width: 70%;
  }
}

/* ---------------------------------------------------
 開催概要
--------------------------------------------------- */
#outline ul {
  margin-bottom: 25px;
}
#outline ul li .title {
  float: left;
  width: 18%;
}
#outline ul li .content {
  float: right;
  width: 82%;
}
#outline ul li.date {
  margin-bottom: 14px;
}
#outline ul li.place .content > p {
  padding-bottom: 5px;
}
#outline ul li.place .google_map a {
  display: flex;
}
#outline ul li.place .google_map a .triangle {
  position: static;
  margin: 0.8em 0.5em 0 0;
}
#outline ul li.place .google_map a .tx {
  font-size: 1.3em;
  letter-spacing: normal;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  #outline .bnr_info {
    width: 360px;
  }
}

/* ---------------------------------------------------
 見どころ
--------------------------------------------------- */
#highlight h2.index_contentTitle {
  padding-bottom: 50px;
}
#highlight .midashi {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7;
  width: 100%;
  border-bottom: 1px solid;
  border-color: #ba88f3;
  padding-bottom: 10px;
  margin-bottom: 25px;
  background: url("../images/icon_bluelock.svg") no-repeat top right/70px;
}
#highlight ul li {
  margin-bottom: 70px;
  /*
  &:last-child{
    margin-bottom: 0;
  }
  */
}
#highlight ul li span {
  font-size: 10px;
  display: block;
  padding-top: 5px;
}
#highlight ul li .nov_01 {
  margin: 30px 0;
}
@media screen and (min-width: 1000px) {
  #highlight {
    width: 1600px;
  }
  #highlight ul .pc_left {
    float: left;
    width: 465px;
    margin-right: 80px;
  }
  #highlight ul .pc_right {
    float: left;
    width: 860px;
  }
  #highlight ul li .nov_topics {
    float: left;
    margin: 30px 0 0 0;
    width: 400px;
  }
  #highlight ul li .nov_topics.nov_01 {
    margin-right: 60px;
  }
}

/* ---------------------------------------------------
 Goods
--------------------------------------------------- */
#goods,
#footer {
  background-color: #003f8e;
  position: relative;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 2px solid #fff;
}

@media screen and (min-width: 1000px) {
  #goods {
    display: flex;
    column-gap: 50px;
    height: calc(100vh - 62px);
    border-left: 2px solid currentColor;
    border-left: 2px solid #fff;
    border-top: 0;
    padding: 30px 40px;
    margin-top: 62px;
  }
}
#goods h2.index_contentTitle {
  padding-bottom: 15px;
}
@media screen and (min-width: 1000px) {
  #goods h2.index_contentTitle {
    padding: 0;
  }
}
#goods .goods_note_link {
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #goods .goods_note_link {
    display: none;
  }
}
#goods .goods_note_link a {
  padding: 5px 0;
  font-size: .9em;
  display: inline-block;
  text-decoration: none;
}
#goods .goods_note_link a .triangle {
  position: static;
  margin: 0.8em 0.5em 0 0;
  display: inline-block;
}
#goods ul.goods_list {
  margin: 40px auto 0;
  width: 96%;
  letter-spacing: normal;
}
@media screen and (min-width: 1000px) {
  #goods ul.goods_list {
    margin: 0;
    width: 5730px;
  }
}
#goods ul.goods_list li {
  width: 47%;
  margin: 0 1.5% 15px;
  background: #fff;
  float: left;
  border-radius: 3px;
}
@media screen and (min-width: 1000px) {
  #goods ul.goods_list li {
    width: 200px;
    margin: 6px;
    /*height: calc((100vh - 147px) / 2);*/
  }
}
#goods ul.goods_list li .item_detail {
  width: 100%;
  padding: 10px;
}
#goods ul.goods_list li .item_detail .name {
  font-size: 11px;
  line-height: 1.6;
  width: 100%;
  word-break: break-all;
  height: 4.5em;
  color: #000;
}
@media screen and (min-width: 1000px) {
  #goods ul.goods_list li .item_detail .name {
    height: 3em;
  }
}
#goods ul.goods_list li .item_detail .price {
  color: #999;
  letter-spacing: 0.01em;
}
#goods ul.goods_list li .item_detail .price span {
  font-size: 10px;
  padding-left: 3px;
}
#goods #goods_note {
  width: 80%;
  margin: 60px auto 0;
}
@media screen and (min-width: 1000px) {
  #goods #goods_note {
    width: 300px;
    margin-top: 12px;
  }
}
#goods #goods_note .title {
  text-align: center;
  border-bottom: 1px solid #4d79b0;
  border-top: 1px solid #4d79b0;
  font-size: 1.1em;
  letter-spacing: 0.3em;
  padding: 10px 0;
  margin-bottom: 30px;
}
#goods #goods_note ul.goods_note_list {
  font-size: .9em;
  padding: 0 0 0 16px;
}
#goods #goods_note ul.goods_note_list li {
  list-style: disc;
  padding-bottom: 9px;
  line-height: 1.6;
}
#goods #goods_note .pc_footer {
  display: none;
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #goods #goods_note .pc_footer {
    display: block;
    display: block;
  }
}
#goods #goods_note .pc_footer .note {
  font-size: 10px;
  color: #fff;
  opacity: .7;
}
#goods #goods_note .pc_footer .logo a {
  display: inline-block;
  width: 90px;
  margin-top: 40px;
}
#goods #goods_note .pc_footer .copyright {
  font-size: 10px;
  margin-top: 4px;
}

/* -----------------------------------------------------------------------------
--------------------------------------------------------------------------------

NEWSページ

--------------------------------------------------------------------------------
------------------------------------------------------------------------------ */
h1.pagetitle {
  font-size: 60px;
  text-align: center;
  margin-top: 75px;
  line-height: 1;
  letter-spacing: normal;
  color: #003f8e;
}
@media screen and (min-width: 1000px) {
  h1.pagetitle {
    margin-top: 110px;
  }
}

.news_tw {
  text-align: center;
  margin-top: 20px;
  letter-spacing: normal;
}
.news_tw p {
  font-size: .8em;
  margin-bottom: 10px;
}
.news_tw .twbtn a {
  display: inline-block;
  background: #003f8e;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 50%;
  color: #fff;
}

ul.news_list {
  margin-top: 36px;
}
@media screen and (min-width: 1000px) {
  ul.news_list {
    width: 800px;
    margin: 36px auto 0;
  }
}
ul.news_list li {
  width: 100%;
  padding: 30px 30px 40px;
  border-top: 3px solid #3cb8f8;
}
@media screen and (min-width: 1000px) {
  ul.news_list li {
    margin-bottom: 40px;
  }
}
ul.news_list li .news_date {
  margin-bottom: 5px;
  font-size: 1.2em;
  color: #aaa;
  letter-spacing: 0.02em;
}
ul.news_list li .news_title {
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 500;
  color: #003f8e;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
ul.news_list li .news_detail a {
  color: #000;
}

.backToTop {
  margin: 70px 0;
}
