@charset "utf-8";

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?mkzbvc");
  src: url("../fonts/icomoon.eot?mkzbvc#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?mkzbvc") format("truetype"),
    url("../fonts/icomoon.woff?mkzbvc") format("woff"),
    url("../fonts/icomoon.svg?mkzbvc#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-new-tab::before {
  content: "\ea7e";
}

/* ===============================
base
=============================== */

body {
  font-family: "Oswald", sans-serif, "Arial", "Noto Sans JP", sans-serif,
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans",
    "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 90%;
  font-weight: 400;
  line-height: 1.6em;
  color: #000;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  /*background: url(../img/bg-patt.png) repeat;*/
}

@media screen and (min-width: 750px) {
  body {
    font-size: 100% !important;
  }
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

a,
a:visited {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover {
  transform: translateY(0.1875em);
  text-decoration: none;
  /*filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;*/
}
.hoverL {
  display: block;
  position: relative;
  text-decoration: none;
}
.hoverL::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff000;
  transition: all 0.3s ease 0s;
}
.hoverL:hover {
  cursor: pointer;
}
.hoverL:hover::after {
  width: 100%;
}

.entry-content a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-size: 0.9em;
  margin: 0 1%;
  font-weight: 600;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: none;
}


h1 {
  font-size: 1em;
  text-align: center;
  text-shadow: 0 0 6px #666;
  max-width: 300px;
}
@media screen and (min-width: 600px) {
  h1 {
    max-width: 500px;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 2.2em;
    max-width: 800px;
  }
}

h2 {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 2em 0 0 0;
  margin: 0;
  line-height: 1;
}

@media screen and (min-width: 420px) {
  h2 {
    font-size: 5em;
  }
}

h3 {
  position: relative;
  padding: 10px 0 30px 0;
  margin: 0;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  h3 {
    font-size: 1.6rem;
    padding: 16px 0 30px 0;
  }
}

h3:before {
  content: "";
  position: absolute;
  left: 15.5%;
  top: 4px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 30%;
  /*下線の幅*/
  height: 1px;
  /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #000;
  /*下線の色*/
}

.info_box {
  margin: 0;
  padding: 10px 15px;
  background: #f8f8f8;
}
@media screen and (min-width: 910px) {
  .info_box {
    padding: 10px 30px;
  }
}
.info_box p {
  font-size: 1.1em;
  line-height: 1.6;
}

.info_box h4 {
  line-height: 1.4;
  font-size: 1.6em;
  font-weight: 900;
  margin: 0;
  padding: 15px 0 0 0;
}

.info_box ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 98%;
  margin: 0 auto;
  border-bottom: 1px dotted #ccc;
  padding: 2% 0;
}
@media screen and (min-width: 750px) {
  .info_box ul {
    width: 630px;
  }
}

.info_box ul:last-child {
  border-bottom: inherit;
}

.info_box ul li.icon {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 750px) {
  .info_box ul li.icon {
    width: 100px;
    height: 100px;
  }
}

.info_box ul li.prof {
  margin-left: 16px;
  font-size: 0.7em;
}
@media screen and (min-width: 750px) {
  .info_box ul li.prof {
    font-size: 1em;
  }
}

.info_box ul li.prof h4 {
  font-size: 1.2em;
  font-weight: 600;
}
@media screen and (min-width: 750px) {
  .info_box ul li.prof h4 {
    font-size: 1.4em;
  }
}
.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* ===============================
utility
=============================== */
.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.bold {
  font-weight: 600;
}

.un-l {
  text-decoration: underline;
}

.fxs {
  font-size: 0.7em;
  font-weight: 400;
}

.fs {
  font-size: 0.9em;
    
}

.fm {
  font-size: 1.0em;
  
}

.fms {
  font-size: 0.4em;
}

.fmred {
  font: 0.6em;
  color: #e96ea7;
}

.fmblue {
  font: 0.6em;
  color: #0000cd;
}

.fL {
  font-size: 1em;
}

.h1L {
  font-size: 1.7em;
  font-weight: 600;
}

@media screen and (min-width: 750px) {
  .fxs {
    font-size: 0.8em;
  }

  .fm {
    font-size: 1.6em;
  }
    
.fmred {
  font: 1.6em;
  color: #e96ea7;
}
    
.fmblue {
  font: 1.6em;
  color: #0000cd;
}


  .fL {
    font-size: 1.5em;
  }

  .h1L {
    font-size: 1.8em;
    line-height: 1.2;
  }
}

.mt1 {
  margin-top: 1em !important;
}

.mt2 {
  margin-top: 2em !important;
}

.mt4 {
  margin-top: 4em !important;
}

.mt8 {
  margin-top: 8em !important;
}

.mb2 {
  margin-bottom: 2em !important;
}

.mb4 {
  margin-bottom: 4em !important;
}

.mb6 {
  margin-bottom: 6em !important;
}

.al-c {
  text-align: center !important;
}

.al-l {
  text-align: left;
}

.al-r {
  text-align: right;
}

.marker {
  background-color: #ff0;
}
.marker2 {
  background-color: #ff0;
font-size: 80%;
}


.marker-light {
  background : linear-gradient(transparent 50%, #c4bd97);
}

button:focus {
  outline: none;
}

button2:focus {
  outline: none;
}

hr {
  border-width: 2px 0 0 0; /* 線の太さを指定 */
  border-style: dashed; /* 線の種類を指定 */
  border-color: #c4bd97; /*線の色を指定 */
}

.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width: 750px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}


.anno {
  margin: 10% auto 0;
  display: table;
  font-weight: 700;
  justify-content: center;
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  .anno {
    font-size: 1.2em;
  }
}

.oran {
  color: #f90 !important;
}
.unknown {
  font-size: 0.7em;
  padding: 8px 0;
  /* font-weight: bold; */
  margin: 5% auto 0;
  text-align: center;
  color: #666 !important;
  max-width: 800px;
  background-color: #fff;
  line-height: 1.6;
  border: 1px solid #666;
}
.unknown:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .unknown {
    font-size: 1em;
  }
}

/* ===============================
button
=============================== */
.btn {
  width: 100%;
  margin: 20% auto 12%;
}

.ls {
  letter-spacing: 0.3em;
  font-size: 0.8rem;
}

@media screen and (min-width: 750px) {
  .ls {
    font-size: 1rem;
  }
}


button {
  display: block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 0;
  width: 80%;
  max-width: 830px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background-color: #00a85c;
  transition: 0.3s;
  border: none;
}
@media screen and (min-width: 750px) {
  button {
    font-size: 18px;
  }
}
button:hover {
  background: #fff;
  color: #0c3388;
}
button:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 2px solid #b3e3ee;
  transition: 0.2s;
}
button:after {
  content: '';
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

button:after {
    right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
button:hover:before {
  top: 0;
  left: 0;
}

button:hover {
  text-decoration: none;
  background-color: #b3e3ee;
}

button2 {
  display: block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 0;
  width: 80%;
  max-width: 830px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background-color: #0c3388;
  transition: 0.3s;
  border: none;
}
@media screen and (min-width: 750px) {
  button {
    font-size: 18px;
  }
}
button:hover {
  background: #fff;
  color: #0c3388;
}
button:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 2px solid #b3e3ee;
  transition: 0.2s;
}
button:after {
  content: '';
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

button:after {
    right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
button:hover:before {
  top: 0;
  left: 0;
}

button:hover {
  text-decoration: none;
  background-color: #b3e3ee;
}


.btn-res {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
color: #fff!important;
    font-weight: 600;
  background-color: #009e96;
  text-decoration: none;
  padding: 4%;
  position: relative;
}

.btn-res span.restxt {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 1;
    font-weight: 600;
}

@media screen and (min-width: 750px) {
  .btn-res span.restxt {
      font-size: 1.4rem;
  }
}
.btn-res span.howtxt {
  font-size: 1.1em;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  z-index: 1;
}


.btn-res2 {
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  color: #fff;
  background-color: #e5004f;
  text-decoration: none;
  padding: 4%;
  position: relative;
 border-bottom: 8px solid #9b0036;
    font-weight: 600;
}

.btn-res2:hover{
  margin-bottom: 7px;
  color: #fff;    
  background: #e5004f;
  border-bottom: 1px solid #9b0036;
}    


.btn-res2 span.restxt {
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 750px) {
  .btn-res2 span.restxt {
      font-size: 1.4rem;
  }
}
.btn-res2 span.howtxt {
  font-size: 1.1em;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  z-index: 1;
}


/* ===============================
header
=============================== */
header {
  padding: 0;
  position: absolute;
  z-index: 1;
}

@supports (-ms-ime-align: auto) {
  header {
    padding: 0;
    position: absolute;
    background-color: #fff;
  }
}

@media screen and (min-width: 750px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
  }

  .is-animation {
    height: auto;
    background-color: rgba(153 203 119);
    border-bottom: 1px solid #f9f9f9;
    z-index: 1;
  }
}

.logo {
  width: 80px;
  padding: 16px 10px 6px;
  margin-right: auto;
  position: absolute;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 6px #ccc;
  left: 10px;
}
@media screen and (min-width: 980px) {
  .logo {
    width: 180px;
    padding: 20px 14px 14px;
    left: 30px;
  }
}

.inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .inner {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.change_btn {
  width: 90%;
  margin: 32px auto;
}

@media screen and (min-width: 750px) {
  .change_btn {
    color: #000;
    display: block;
    width: 100%;
    text-decoration: none;
    border: 1px solid #000;
    text-align: center;
    padding: 25px 0;
    font-size: 20px;
    margin-top: 40px;
  }
}

#pc-nav {
  display: none;
}

@media screen and (min-width: 992px) {
  #pc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
  }

  #pc-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #pc-nav li a::first-line {
    font-size: 0.3em;
    line-height: 0.9;
  }

  #pc-nav li a {
    padding: 19px 0 12px 0;
    font-weight: 500;
    text-decoration: none;
    transition-property: all;
    transition: 0.3s linear;
    display: block;
    width: 110px;
    text-align: center;
    color: #fff;
  }

  #pc-nav li a.entry {
    padding: 19px 0 12px 0;
    font-weight: 500;
    text-decoration: none;
    transition-property: all;
    transition: 0.3s linear;
    display: block;
    width: 130px;
    text-align: center;
    color: #fff;
    background: #00a85c;
  }
}

header nav div.menu {
  margin: 0 auto;
  width: 60%;
  z-index: 999999;
}
@media screen and (min-width: 910px) {
  header nav div.menu {
    margin: 0 auto;
    width: 30%;
    z-index: 999999;
  }
}

header nav div.menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

header nav div.menu ul li {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

header nav div.menu ul li a {
  color: #fff !important;
  font-size: 1rem;
  padding: 8px;
}

header nav div.menu ul li a.m-title {
  padding: 5% 0;
  color: #ff0 !important;
  display: block;
}

header nav div.menu ul ul li {
  position: relative;
  float: none;
  margin: 0;
  width: 100%;
  border: 0;
  color: #fff;
  font-size: 0.9rem;
  text-align: justify;
  padding: 2% 0;
}

header nav div.menu ul ul li a {
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 0.7rem;
}

header nav div.menu ul li:last-child {
  border: 0;
}

header nav div.menu ul ul {
  margin-top: 20px;
}

@media screen and (max-width: 320px) {
  header nav div.menu ul li {
    margin-bottom: 10%;
  }

  header nav div.menu ul li a {
    font-size: 1rem;
    padding: 8px;
  }

  header nav div.menu ul li a.m-title {
    padding: 3% 10%;
  }

  header nav div.menu ul ul li {
    font-size: 0.8rem;
    line-height: 1.6;
    padding: 0;
  }

  header nav div.menu ul ul li a {
    font-size: 0.7rem;
  }

  header nav div.menu ul ul {
    margin: 5% 0 5% 0;
  }
}

@media screen and (min-width: 420px) and (max-width: 922px) {
  header div.menu ul {
    /*width: 60%!important;*/
  }

  header nav div.menu ul li a.m-title {
    padding: 4% 20%;
  }

  header nav div.menu ul ul li {
    font-size: 1rem;
    padding: 6% 0;
    line-height: 1.6;
  }
}

@media screen and (max-width: 896px) and (orientation: landscape) {
  header nav div.menu {
    width: 92%;
  }

  header nav div.menu ul li {
    float: left;
    padding: 2%;
    width: 100%;
    border-bottom: 0;
  }

  header nav div.menu ul li a.m-title {
    padding: 8% 10%;
  }

  header nav div.menu ul li a {
    font-size: 0.8rem;
  }

  header nav div.menu ul ul li {
    font-size: 0.6rem;
    padding: 2% 0;
    line-height: 1.6;
    text-align: justify;
  }

  header nav div.menu ul ul li a {
    font-size: 0.6rem;
  }

  header nav div.menu ul ul {
    margin-top: 20px;
  }
}

@media screen and (min-width: 922px) {
  header div.menu {
    width: 90%;
  }

  header nav div.menu ul li a.m-title {
    padding: 4% 10%;
    font-size: 1.4em;
  }

  header nav div.menu ul li {
    padding: 0;
    width: 100%;
    border-bottom: 0;
  }

  header nav div.menu ul ul {
    margin-top: 20px;
  }

  header nav div.menu ul ul li a:hover {
    color: #339999;
  }
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  height: 100vh;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  display: none;
  /*天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*==============
nav btn CSS
 ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 14px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
}
@media screen and (min-width: 922px) {
  .openbtn {
    background: initial;
  }
}
.openbtn.active {
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 922px) {
  .openbtn.active {
    background: initial;
  }
}

/*open時*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.9);
  width: 45%;
}

.openbtn.active span {
  background: rgba(255, 255, 255, 0.9) !important;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*------------------------------
main-view
------------------------------*/
.hero_area {
  width: 100%;
  background: #99cb77;
 
  display: flex;
  flex-wrap: nowrap;
  padding: 65px 0 0 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  -webkit-scroll-snap-type: dtcatch-inmandatory;
  scroll-snap-type: mandatory;
  -webkit-scroll-snap-points-y: repeat(100%);
  scroll-snap-points-y: repeat(100%);
}

.box {
  color: #fff;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 160px;
  font-weight: 600;
  background: url(../img/bg-main.jpg) no-repeat center;
  text-align: center;
  background-size: cover;
  padding: 0;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .box {
    min-height: 270px;
    background-size: contain;
  }
}

@media screen and (min-width: 1000px) {
  .box {
    min-height: 500px;
    background-size: contain;
  }
}

.box-bottom {
  width: 92%;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  padding: 0% 0% 3%;
}

.box-bottom img {
  width: 70%;
  margin-bottom: 10px;
}

div.vid_contents {
width:100%;/*背景色を横幅いっぱいに広げる*/
text-align: center;
margin: auto;
padding: 0.5% 0% 0% 0%;/*ここで動画の周りの余白を調整*/
/*background: #e6e6e6;余白の背景色*/
}
video.vid_main {
width: 100%;
max-width: 640px;/*PC版での最大幅*/    
}

.col_4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  }

.col_4 > li {
  width: 50%;
  padding: 5px 0;
  font-size: 0.75rem;
}

@media screen and (max-width: 320px) {
  .col_4 > li {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 992px) {
  .col_4 > li {
    width: 25%;
    padding: 10px;
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 992px) {
  .col_4 > li {
    width: 25%;
    padding: 10px;
    font-size: 1.2rem;
  }
}

.col_4 > li > p {
  background: #fff;
  height: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .col_4 > li > p {
    height: 40px;
  }
}

.col_4 > li:nth-child(1),
.col_4 > li:nth-child(3) {
  padding-right: 10px;
}

@media screen and (min-width: 1000px) {
  .col_4 > li:nth-child(3) {
    padding-right: 0px;
  }
}

span.point {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  width: 100%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
/* ===============================
section
=============================== */
/* 見出し背景 */
.sl-left {
  background: url(../img/l-sl.svg) no-repeat top left;
}
.sl-right {
  background: url(../img/r-sl.svg) no-repeat top right;
}

section {
  width: 92%;
  height: auto;
  margin: 0 auto;
  clear: both;
}
@media screen and (min-width: 930px) {
  section {
    max-width: 1040px;
  }
}

.catch img {
  width: 180px;
  padding: 0;
}
@media screen and (min-width: 930px) {
  .catch img {
    width: 500px;
    padding: 0;
  }
}

.catch p {
  font-size: 120%;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 930px) {
  .catch p {
    font-size: 130%;
    text-align: left;
    line-height: 2;
  }
}

.h2_catch {
  font-size: 2em;
  font-weight: 700;
  padding: 2em 0;
  margin: 0;
  text-align: center;
  line-height: 1.3;
  color: #fff000;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 930px) {
  .h2_catch {
    font-size: 2.6em;
    font-weight: 700;
  }
}

.catch-in {
  width: 94%;
  margin: 0 auto 15%;
  height: auto;
}
@media screen and (min-width: 930px) {
  .catch-in {
    max-width: 830px;
    margin: 10% auto 2%;
    height: auto;
  }
}

.catch-txt {
  text-align: center;
  line-height: 1.5;
  font-size: 1em;
}
@media screen and (min-width: 930px) {
  .catch-txt {
    font-size: 1.2em;
  }
}
.catch-txt span {
  display: inline-block;
}

.largec{
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    color: coral;
}

@media screen and (min-width: 930px) {
  .largec {
    font-size: 1.8em;
    }
}

.section-in {
  width: 96%;
  margin: 0 auto;
  height: auto;
}
@media screen and (min-width: 930px) {
  .section-in {
    max-width: 830px;
    margin: 0 auto;
    height: auto;
  }
}

.section-in2 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 930px) {
  .section-in2 {
    width: 90%;
    margin: 0 auto;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.close {
  width: 100%;
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
}

/* ===============================
event information
=============================== */
.info {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 2% 0;
}
@media screen and (min-width: 750px) {
  .info {
    padding: 2% 0;
  }
}

.info dt {
  width: 50px;
  height: 50px;
  background: #fff;
  position: relative;
  border-radius: 120px;
  border: 2px solid #0c3388;
}
@media screen and (min-width: 750px) {
  .info dt {
    width: 80px;
    height: 80px;
  }
}

.dt-hex {
  height: 100%;
  font-size: 12px;
  color: #0c3388;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 750px) {
  .dt-hex {
    font-size: 16px;
  }
}

/*
.info dt::before,
.info dt::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #0c3388;
  z-index: 0;
}

.info dt::before {
  transform: rotate(60deg);
}

.info dt::after {
  transform: rotate(-60deg);
}*/

span.num {
  font-size: 2rem;
}

@media screen and (max-width: 320px) {
  span.num {
    font-size: 2rem;
  }
}

@media screen and (min-width: 750px) {
  span.num {
    font-size: 3em;
  }
}
.info dd.date,
.info dd.access {
  border-bottom: 1px solid #000;
  margin: 0 0 0 2%;
  padding: 0;
  width: 80%;
}

.info dd.time {
  border-bottom: 1px solid #000;
  margin: 0 0 0 2%;
  padding: 0;
  width: 80%;
    font-size: 1.0rem;
  line-height: 1.4;
  font-size: 1.8rem;
}

/* 時間2種類の時 */
.info dd.time2 {
  border-bottom: 1px solid #000;
  margin: 0 0 0 2%;
  padding: 0;
  width: 80%;
  font-size: 2.3rem;
  line-height: 1.8;
  padding: 0 0 2% 0;
}

/* 時間3種類の時*/
.info dd.time3 {
  border-bottom: 1px solid #000;
  margin: 0 0 0 2%;
  width: 80%;
  font-size: 1.0rem;
  line-height: 1.4;
  padding: 0 0 2% 0;
}

dd.time3 p {
  line-height: 1;
  margin: 0 0 15px 0;
}

dd.time3 span {
  display: inline-block;
  font-size: 0.6em;
}

/*時間が2種の時の日付*/
span.num2 {
  display: block;
  font-size: 1rem;
  border-bottom: 1px dashed #ccc;
  padding: 1px 0 0 2px;
  margin: 0;
}

@media screen and (min-width: 750px) {
  .info dd.time {
    font-size: 2.4rem;
    line-height: 1;
  }
  .info dd.time3 {
    font-size: 1.8rem;
  }
    
}
@media screen and (max-width: 320px) {
  .info dd.time {
    font-size: 1.8rem;
  }
}

.info dd.detail {
  border-bottom: 1px solid #000;
  margin: 0 0 2% 2%;
  padding: 0;
  width: 80%;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.timetable {
  margin-top: 10%;
  width: 100%;
  display: block;
}

.timetable ul {
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.timetable ul li p {
  width: 100%;
  height: auto;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 0%;
  font-size: 1.2em;
  display: block;
}

.timetable ul li.title {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px 0;
  font-size: 2em;
  margin-bottom: 2%;
  background: #666;
  color: #fff;
}

.timetable ul li.time {
  width: 100%;
  height: auto;
  text-align: center;
  background: #ddd;
  padding: 6px;
  font-size: 1.4em;
  font-weight: 500;
  margin: 0 auto;
}

.timetable ul li.content {
  padding: 14px 0 0;
  margin-bottom: 0%;
  font-size: 1.1em;
  display: block;
  padding: 3% 0 0 0;
}

ul.timebox {
  font-weight: 400;
  width: 98%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9em;
  border: 1px solid #efefef;
}
.timebox li {
  width: 33.3333%;
  padding: 3%;
  border-right: 1px solid #efefef;
  display: flex;
  align-items: center;
  line-height: 1.6;
  justify-content: center;
}
.timebox li:nth-child(3) {
  border-right: unset;
}

@media screen and (min-width: 750px) {
  ul.timebox {
    font-size: 1.4em;
  }
}

/* ===============================
section-timeline
=============================== */
#timeline {
  line-height: 1.6;
}

@media screen and (min-width: 750px) {
  .timeline-img {
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .timeline-img {
    width: 60%;
  }

  .timeline-img::before {
    content: "";
    position: absolute;
    right: -67%;
    width: 90%;
    top: 34%;
    background-color: #b3e3ee;
    height: 80%;
    z-index: -999999;
  }
}

.timetable {
  margin: 0 auto;
  width: 100%;
  display: block;
}

.oped {
  padding: 10px;
  border-radius: 24px;
  border: 1px solid #b3e3ee;
  background: #222;
}

.oped .title {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 2% 0 0 0;
  font-size: 1.6em;
  font-weight: 500;
  margin-bottom: 5%;
  color: #000;
}

.timetable h4 {
  width: 100%;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 1.4em;
  margin-top: 10%;
}
@media screen and (min-width: 750px) {
  .timetable h4 {
    font-size: 1.8em;
  }
}

.timetable h4:before,
.timetable h4:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30%;
  height: 1px;
  background-color: black;
}

.timetable h4:before {
  left: 0;
}
.timetable h4:after {
  right: 0;
}

.timetable > div.time {
  width: 100%;
  height: auto;
  text-align: center;
  background: ##b3e3ee;
  color: #222;
  padding: 6px;
  font-size: 1.6em;
  font-weight: 600;
  margin: 16% 0 0 0;
  border-radius: 24px;
}
@media screen and (min-width: 750px) {
  .timetable > div.time {
    margin-top: 6%;
  }
}

.timetable > div.content {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 14px;
  margin-bottom: 0%;
  font-size: 1.2em;
  display: block;
}

.btn-room {
  text-align: center;
  margin: 2% auto 6%;
}
.btn-room a {
  height: 40px;
  padding: 15px 35px;
  background: #b3e3ee;
  color: #222;
  border-radius: 6px;
}
@media screen and (min-width: 750px) {
  .btn-room a {
    padding: 15px 100px;
  }
}

/*------------------------------
card list
------------------------------*/
.list {
  display: block;
  padding: 0px;
  margin-top: 3%;
}
@media screen and (min-width: 750px) {
  .list {
    display: flex;
    justify-content: space-between;
    font-size: 110%;
  }
}

.list li {
  width: 100%;
  background: #ddd;
  margin: 6px auto;
  padding: 0px;
  list-style: none;
}
@media screen and (min-width: 750px) {
  .list li {
    width: 100%;
    margin: 6px 0;
  }
}

.list li.card {
  background-color: #fefefe;
  color: #000;
  border: 1px solid #222;
  border-top: 6px solid ##b3e3ee;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .list li.card {
    padding: 10px 70px;
  }
}

.list li.card .btn-area {
  width: 100%;
  margin: 0 auto 1%;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
}

.list li.card .btn-area a.btn-room {
  width: 49%;
  padding: 5% 0;
  background: #f90;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .list li.card .btn-area a.btn-room {
    padding: 1.8% 0;
    margin: 0;
    display: inline-block;
    border-radius: 6px;
  }
}

.list li.card .btn-area a.btn-room:hover {
  opacity: 0.6;
}

.b-blue {
  background: ##b3e3ee !important;
}

.list li.card .ttl {
  font-weight: bold;
}

.list li.card .txt {
  font-size: 90%;
  margin-top: 0;
  line-height: 1.5;
}

.list li.card .type {
  font-size: 80%;
  color: ##b3e3ee;
  margin-top: auto;
}

.list li.card .item-con {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 0.8em;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  background: #fff !important;
  margin-bottom: 2%;
}

.list li.card .item-con .flexitem {
  width: 50%;
}

.left{
    justify-content: flex-start!important;
}

/*===============================
Guest area
===============================*/

.bg-gray {
  background: #efefef;
  padding: 2% 0 2%;
  border-radius: 6px;
}
.guest-in {
  width: 90%;
  margin: 0 auto;
}

.g-list {
  font-size: 110%;
  line-height: 120%;
}
@media screen and (min-width: 750px) {
  .g-list {
    font-size: 130%;
      line-height: initial;
  }
}

.g-list span {
  display: inline-block;
}

.g-sub {
  font-size: 1.4em;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 10px 0;
  background: #000;
  color: #fff;
  margin-bottom: 0;
}

.guest-in h4 {
  font-size: 1em;
  margin: 4% auto 2%;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

.logo-list {
  width: 100%;
 display: flex;
  flex-wrap: wrap;
   justify-content: space-between;
  padding: 2%;
}

.logo-list .logo-box {
  width: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 2%;
  padding: 3px;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (min-width: 750px) {
  .logo-list .logo-box {
    margin-bottom: 0;
}
}

.logo-box img {
  margin-bottom: 8px;
}

small {
  font-size: 0.5em;
  line-height: 1.2;
}

/* pc 最後の行揃え調整用*/
.logo-list::after {
display: block;
content:"";
width: 25%;
  height: 0;
}

@media screen and (min-width: 750px) {
  .logo-list .logo-box {
  width: 20%;
}
  .logo-list::after {
display: block;
content:"";
width: 25%;
  height: 0;
}
}

/* ===============================
Section-Special
=============================== */
#special h4 {
  font-size: 1.4em;
  line-height: 1.6;
}

/* ===============================
Section-Appli
=============================== */
.app-box {
  width: 100%;
  border: 1px solid #777;
  margin-top: 6%;
}

@media screen and (min-width: 750px) {
  .app-box {
    margin: 5% auto;
  }
}

.app-box .title {
  color: #fff;
  background: #777;
  padding: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .app-box .title {
    padding: 20px;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.app-box-in {
  padding: 6%;
}

@media screen and (min-width: 750px) {
  .app-box-in {
    padding: 6%;
  }
}

.app-box-in > ul {
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 0;
  font-size: 0.8em;
}

.app-box-in > ul > li {
  width: 100%;
}

.app-box-in > ul.topic {
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  font-size: 1.2em;
  vertical-align: top;
}

.topic img {
  width: 40%;
  margin: 0 auto;
}
.app-box-in > ul.topic > li {
  text-align: left;
}

@media screen and (min-width: 750px) {
  .app-box-in > ul.topic {
      width: 60%;
      font-size: 1.4rem;
      float: left;
      vertical-align: top;
      padding: 0;
      margin: 3% 0 0 0;
  }
}
/*@media screen and (min-width: 992px) {
  .app-box-in > ul.topic {
    font-size: 1.2rem;
    vertical-align: top;
    padding: 0;
    margin: 3% 0 0 0;
  }
}*/

.app-box-in > ul > li.text {
  font-weight: 400;
  font-size: 1rem;
  text-align: left;
  line-height: 1.8;
  text-align: justify;
}

.app-box-in > ul.btn_area {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  /*margin: 2% auto;*/
}

@media screen and (min-width: 750px) {
  .app-box-in > ul.btn_area {
    max-width: 400px;
    width: 60%;
  }
}

.app-box-in > ul.btn_area li {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .app-box-in > ul.btn_area li {
    padding: 0;
    width: 200px;
  }
}

.app-box-in .btn_how {
  margin: 0 auto;
  font-size: 0.7em;
}

@media screen and (min-width: 750px) {
  .app-box-in > ul.btn_how {
      width: 60%;
      padding: 0;
      margin: 0;
      float: left;
  }
}

.app-box-in > ul > li {
  width: 100%;
  text-align: left;
}

.app-box-in > ul.sphone {
  width: 40%;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .app-box-in > ul.sphone {
      width: 33%;
      float: right;
      margin: 0;
      padding: 0;
  }
}


.app-box-in > ul.sphone li {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .caution {
    width: 100%;
    margin: 0 auto;
  }

  .cau {
    text-align: center;
    font-size: 16px;
    margin: 0 !important;
  }
}

/* ===============================
Section-On-Demand
=============================== */
.od-box {
  width: 100%;
  border: 1px solid #000;
  margin-top: 6%;
}
@media screen and (min-width: 992px) {
  .od-box {
    width: 90%;
    margin: 5% auto 2%;
  }
}

.od-box .title {
  color: #fff;
  background: #3399cc;
  padding: 10px;
  font-weight: 600;
  font-size: 1.3em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 992px) {
  .od-box .title {
    padding: 20px;
    font-weight: 600;
    font-size: 1.8em;
    line-height: 1.6;
  }
}

.od-box .title2 {
  color: #fff;
  background: #3399cc;
  padding: 5px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  line-height: 1.1rem;
}
@media screen and (min-width: 992px) {
  .od-box .title2 {
    padding: 5px;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.od-box-in {
  padding: 4%;
}
@media screen and (min-width: 992px) {
  .od-box-in {
    padding: 1% 3%;
    font-size: 90%;
  }
}

.od-box-in > ul {
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 0;
  font-size: 0.8em;
}

.od-box-in > ul > li {
  width: 100%;
}

.od-box-in > ul.topic {
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  font-size: 1.3em;
  vertical-align: top;
  line-height: 1.5em;
}

@media screen and (min-width: 992px) {
  .od-box-in > ul.topic {
    /*width: 60%;*/
    font-size: 2rem;
    /*float: left;*/
    vertical-align: top;
    padding: 0;
    margin: 0 0 0 0;
  }
}

.od-box-in > ul.topic > li {
  text-align: left;
}

.od-box-in > ul.topic small {
  font-size: 0.6em;
}

.inner {
  width: 90%;
  margin: 0 auto;
  font-size: 0.8em;
}

.od-box-in > ul > li.text {
  font-weight: 400;
  font-size: 1.3em;
  text-align: left;
  line-height: 1.8;
  text-align: justify;
  padding: 1% 4%;
}
@media screen and (min-width: 992px) {
  .od-box-in > ul > li.text {
    font-size: 1.2em;
    line-height: 2;
  }
}

.od-box-in > ul > li {
  width: 100%;
  text-align: left;
}

/* ===============================
conpany
===============================*/
.company {
  margin-top: 5%;
}
.company h2 {
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
  padding: 0;
  margin: 1em 0 1.5em;
    font-family: "ヒラギノ角ゴシック", sans-serif !important;
}
@media screen and (min-width: 768px) {
  .company h2 {
    font-size: 3em;
  }
}


.company h3 {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1em;
  position: initial;
  margin-bottom: 1em;
}
.company h3::before {
  content: none;
}

.img-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.img-area li {
  padding: 5px;
}

.com-info {
  border: 2px solid #0c3388;
  margin: 2em 0 0 0;
}

.com-info h2 {
  background: #0c3388;
  padding:  10px 10px 10px 0;
  margin: 0;
  color: #fff;
font-family: "Jost", sans-serif !important;
}

.com-info h3 {
  font-weight: 700;
  margin: 1em 0;
  padding: 0;
  text-align: left;
  border: none;
}

.com-info div {
  padding: 2em;
  text-align: justify;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

/* ===============================
footer
=============================== */

#footer {
  position: relative;
  bottom: 0;
  margin-top: 50%;
  padding: 5% 0;
  background-color: #e6e6e6;
  color: #000;
}
@media screen and (min-width: 992px) {
  #footer {
    margin-top: 15%;
  }
}

.f-nav ul {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .f-nav ul {
    display: flex;
    align-items: center;
    height: 56px;
    justify-content: flex-end;
  }
}

.f-logo {
  width: 30%;
  margin: 5% auto 10%;
}
@media screen and (min-width: 992px) {
  .f-logo {
    width: 132px;
    padding: 0;
    float: left;
    margin: 0;
  }
}

.f-nav {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .f-nav {
    display: block;
    left: 55%;
    font-size: 0.8rem;
  }
}

.f-nav li {
  border-top: 0;
  border-bottom: 1px solid #000;
  padding: 5% 10px;
}
@media screen and (min-width: 992px) {
  .f-nav li {
    border-bottom: 0;
    border-right: 1px solid #000;
    padding: 0 3%;
    color: #000;
  }
}

.f-nav li a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
  color: #000 !important;
}

.f-nav li a:hover {
  color: #000;
}

@media screen and (min-width: 992px) {
  .f-nav li:last-child {
    border-bottom: 1px solid #ccc;
  }
}

@media screen and (min-width: 992px) {
  .f-nav li:last-child {
    border-bottom: 0;
  }
}

.purpose {
  font-size: 0.6rem;
  color: #666;
  line-height: 1.2;
  padding: 5% 0;
  text-align: left;
}

.address,
.address a {
  color: #fff;
  font-size: 1em;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .address,
  .address a {
    font-size: 1.2em;
  }
}

/* ===============================
pagetop
=============================== */
/*トップへ戻るボタン*/
.topBtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  display: block;
  background-color: rgba(250, 250, 250, 0.8);
  color: #666;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 22px;
  padding-top: 26px;
  box-sizing: border-box;
}

.topBtn:before {
  content: "\25B2";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.topBtn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 992px) {
  .topBtn {
    width: 60px;
    height: 60px;
    padding-top: 30px;
  }
}

/*------------------------------
ENTRY
------------------------------*/
.entryBtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  display: block;
  background-color: #ccc;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  width: 50px;
  height: 80px;
  text-align: center;
  line-height: 22px;
  padding-top: 26px;
  box-sizing: border-box;
}

.entryBtn:before {
  content: "\02192";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.entryBtn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 992px) {
  .entryBtn {
    width: 60px;
    height: 100px;
    padding-top: 30px;
  }
}

/* ------------------------------
link-btn
------------------------------ */
.box-link {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.box-link:hover {
 opacity: 0.6;
}
.box-link .box-title {
    font-size: 1.6em;
    background: #fff000;
    padding: 16px 0;
    text-align: center;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.box-link p {
    text-align: center;
    padding: 8px 0;
    margin: 3% 3% 0;
    font-size: 160%;
    border-top: 1px dashed #000;
}
.box-link p.text {
    text-align: center;
    padding: 3% 0;
    margin: 0 3%;
    font-size: 160;
    border-top: 1px dashed #000;
}

.box-link h4 {
    margin: 4% 0;
    font-size: 1.6em;
    text-align: center;
    line-height: 1.2;
}

    .box-link span.large {
        font-size: 1.3em;
}
    .box-link span.small {
        font-size: 0.6em;
    }

@media screen and (min-width: 992px) {
    .box-link span.large {
        font-size: 1.3em;
}
    .box-link span.small {
        font-size: 0.8em;
    }
}

.box-link span.num {
    margin: 0;
    padding: 0;
    font-size: 1.6em;
    line-height: 1.4;
    font-family: "Anton";
    font-weight: 400;
    letter-spacing: 0.1em;
}

.box-link span.time {
    margin: 0;
    padding: 0;
    font-size: 1.6em;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
}


  .bg-navy {
    background: #002060!important;
    color: #fff!important;
}

.bg-gold {
    background: #b48e37!important;
    color: #fff!important;
}

.smalltxt {
    font-size: 1em!important;
}
@media screen and (min-width: 992px) {
.smalltxt {
    font-size: 1.3em!important;
}
}
  .box-link ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
  }
  @media screen and (min-width: 992px) {
    .box-link ul {
        display: flex;
        flex-wrap: nowrap;
      }
  }

  .box-link ul li {
    margin: 2px auto;
    width: 100%;
    text-align: center;
  }
  @media screen and (min-width: 992px) {
    .box-link ul li {
       width: auto;
      }
  }

  .box-link ul li img {
  padding: 0px;
  width: 120px;
  text-align: center;
  margin: 0 auto;
  }
  @media screen and (min-width: 992px) {
    .box-link ul li img {
        padding: 20px;
        width: 300px;
        }
  }

  .subtitle {
   text-align: center;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .letter {
   text-align: center;
    font-size: 0.9em;
    text-align: justify;
    line-height: 1.4;
  }
  @media screen and (min-width: 992px) {
    .letter {
         font-size: 1.1em;
         padding: 0 20px;
       }
  }
