body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  padding: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 1.00);
  word-break: break-all;
  background-image: url(../img/common/bg_en_top.png), url("../img/common/bg_en_btm.png"), url("../img/common/footer_bg.jpg");
  background-position: left top, right bottom, left bottom;
  background-size: 50% auto, 40% auto, 40% auto;
  background-repeat: no-repeat;
}
@media (max-width:991.98px) {
  body {
    background-size: 55% auto, 50% auto, 45% auto;
  }
}
@media (max-width:767.98px) {
  body {
    background-size: 60% auto, 70% auto, 60% auto;
  }
}
@media (max-width:575.98px) {
  body {
    background-size: 75% auto, 70% auto, 70% auto;
  }
}
html {
  font-size: 62.5%;
  /*  scroll-behavior: smooth;*/
}
/*------------------------------
	共通
------------------------------*/
/*文字
------------------------------*/
.ttl {
  color: rgba(177, 177, 177, 1.00);
}
.ttl, .subttl {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
.udline {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: rgba(255, 226, 146, 0.4);
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}
.red {
  color: rgba(200, 0, 83, 1.00);
}
.moji_min {
  font-family: "Noto Serif JP", serif;
}
@media (max-width:575.98px) {
  .ttl, .subttl {
    font-size: medium;
  }
}
/*------------------------------
	Links
------------------------------*/
a {
  outline: none;
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
}
a:link {
  outline: none;
}
a:visited {
  outline: none;
}
a {
  color: rgba(2, 21, 104, 1.00);
  transition: all 1.1s ease 0s;
  text-decoration: none;
}
a:hover {
  color: rgba(43, 173, 227, 1.00);
}
a img {
  transition: 0.7s;
}
a img:hover {
  opacity: 0.8;
}
/* orignal botan
--------------------------*/
.linkbt {
  text-align: center;
  margin: 1em;
}
.linkbt a {
  padding: 0.5em 1.5em;
  font-size: 1em;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(2, 21, 104, 1.00);
  color: rgba(2, 21, 104, 1.00);
  text-decoration: none;
  display: block;
  transition: all 1.1s ease 0s;
}
.morebt a {
  font-family: "Noto Serif JP", serif;
  display: block;
  border-radius: 100%;
  border: 1px solid rgba(127, 127, 127, 1.00);
  color: rgba(127, 127, 127, 1.00);
}
.morebt a span {
  font-size: 0.7em;
  padding-left: 0.1em;
}
.linkbt a:hover, .morebt a:hover {
  border: 1px solid rgba(43, 173, 227, 1.00);
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(43, 173, 227, 1.00);
}
@media (max-width:991.98px) {
  .linkbt a {
    font-size: 0.9em;
  }
}
@media (max-width:767.98px) {
  .linkbt a {
    font-size: 0.7em;
  }
}
@media (max-width:500.98px) {
  .linkbt a {
    font-size: 11px;
  }
}
/*------------------------------
	フェードイン
------------------------------*/
.inUp {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*レスポンシブtable
----------------------*/
table.restable {
  box-sizing: border-box;
  border-collapse: collapse;
  margin: 0;
  width: 100%;
}
table.restable th, table.restable td {
  border: none;
  padding: 1em;
  text-align: left;
  vertical-align: top;
}
table.restable th {
  white-space: nowrap;
}
table.restable td {
  width: 100%;
}
@media (max-width: 991.98px) {
  table.restable th, table.restable td {
    display: block;
  }
  table.restable th {
    padding-bottom: 0.2em;
  }
}
/*------------------------------
Header
------------------------------*/
#Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  height: 100%;
}
#Header img {
  width: 100%;
  height: auto;
}
#Header #logo {
  width: 32%;
  max-width: 380px;
}
#Header .linkbt {
  margin: 0;
  padding-right: 1em;
  font-size: 1.6rem;
}
@media (max-width:767.98px) {
  #Header #logo {
    width: 38%;
  }
}
@media (max-width:575.98px) {
  #Header {
    padding-top: 0.4em;
    padding-bottom: 0.5em;
  }
  #Header #logo {
    width: 50%;
  }
}
/*------------------------------
Pagetop
------------------------------*/
#pageTop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 9999;
}
#pageTop a {
  background-color: rgba(2, 21, 104, 1.00);
  border-radius: 5px;
  display: block;
  height: 24px;
  width: 30px;
  text-align: center;
  padding-top: 4px;
}
#pageTop a:hover {
  background-color: rgba(43, 173, 227, 1.00);
}
#pageTop a i {
  font-size: 20px;
  color: rgba(255, 255, 255, 1.00);
}
@media (max-width:575.98px) {
  #pageTop {
    bottom: 50px;
    right: 10px;
  }
  #pageTop a i {
    font-size: 18px;
  }
  #pageTop a {
    border-radius: 3px;
    height: 20px;
    width: 24px;
  }
}
/*------------------------------
Access
------------------------------*/
#Access {
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding-top: 200px;
}
#Access .txt {
  width: 40%;
  padding: 0 1em;
}
#Access .ttl {
  font-size: 6rem;
  margin: 0;
}
#Access .txt p {
  font-size: 1.7rem;
  line-height: 1.8;
}
#Access .map {
  width: 70%;
}
#Access iframe {
  width: 100%;
  height: 500px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16);
}
@media (max-width:767.98px) {
  #Access {
    padding-top: 8em;
  }
  #Access {
    display: inherit;
    width: 80%;
    max-width: 500px;
  }
  #Access .txt {
    width: 100%;
    padding: 0 1em;
  }
  #Access .map {
    width: 100%;
    margin-top: 5em;
  }
  #Access iframe {
    height: 350px;
  }
}
@media (max-width:500px) {
  #Access .txt p {
    font-size: 15px;
    line-height: 1.6;
  }
  #Access iframe {
    height: 250px;
  }
}
/*------------------------------
footer
------------------------------*/
#footer {
  padding-top: 20em;
}
#footer #footercnt {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 30em;
}
#footer #footertxt {
  width: 60%;
  margin-left: auto;
  color: rgba(2, 21, 104, 1.00);
}
#footer .ttl img {
  width: 100%;
  height: auto;
  max-width: 550px;
}
#footertxt .txt {
  padding-left: 20%;
}
#footertxt .txt p {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: bold;
}
#footertxt .txt .moji_bb {
  font-size: 200%;
}
#footertxt .txt .em {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 3em;
}
#footertxt .txt .linkbt {
  max-width: 200px;
  padding-top: 1em;
}
#footertxt .txt .linkbt a {
  font-size: 1.7rem;
}
#footer .sns {
  width: 90%;
  font-weight: bold;
}
#footer .sns a {
  font-size: 1.8rem;
  margin: 1em 0;
  display: inline-block;
}
#footer .sns i {
  font-size: 30px;
  vertical-align: sub;
  padding-right: 5px;
}
#footer .pop {
  margin-top: 3em;
}
#footer .pop a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}
#copy {
  text-align: right;
  font-size: 0.8em;
  padding: 2em;
  color: rgba(255, 255, 255, 1.00);
}
@media (max-width:991.98px) {
  #footer {
    padding-top: 10em;
  }
  #footer #footercnt {
    padding-bottom: 25em;
  }
  #footer #footertxt {
    width: 66%;
  }
  #footertxt .txt p {
    font-size: 1.8rem;
  }
  #footertxt .txt .moji_bb {
    font-size: 190%;
  }
  #footertxt .txt .linkbt a {
    font-size: 1.6rem;
  }
  #footer .sns a {
    font-size: 1.7rem;
  }
  #footer .sns i {
    font-size: 26px;
  }
  #footer .pop a {
    font-size: 1.86rem;
  }
  #copy {
    font-size: 0.7em;
    padding: 2em;
  }
}
@media (max-width:767.98px) {
  #footertxt {
    text-align: center;
  }
  #footer #footercnt {
    width: 80%;
    padding-bottom: 50em;
    max-width: 400px;
  }
  #footer #footertxt {
    width: 100%;
    padding-left: 0em;
  }
  #footertxt .txt {
    padding-left: 0;
  }
  #footertxt .txt .linkbt {
    margin: 2em auto;
  }
}
@media (max-width:575.98px) {
  #footer {
    padding-top: 10em;
  }
  #footer #footercnt {
    padding-bottom: 20em;
  }
  #footertxt .txt p {
    font-size: 18px;
  }
  #footer .sns a {
    font-size: 18px;
  }
  #footer .sns i {
    font-size: 34px;
  }
  #footer .pop a {
    font-size: 18px;
  }
  #footertxt .txt .linkbt a {
    font-size: 16px;
  }
  #copy {
    text-align: center;
    font-size: 10px;
    margin-top: 40%;
    padding: 1em;
  }
}
@media (max-width:500px) {
  #footertxt .txt p {
    font-size: 15px;
  }
  #footer .sns a {
    font-size: 15px;
  }
  #footer .sns i {
    font-size: 24px;
  }
  #footer .pop a {
    font-size: 15px;
  }
  #footertxt .txt .moji_bb {
    font-size: 150%;
  }
  #footertxt .txt .linkbt {
    max-width: 180px;
    margin: 2em auto;
  }
  #footertxt .txt .linkbt a {
    font-size: 15px;
  }
  #copy {
    font-size: 9px;
    padding: 1em;
  }
}
/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}
/* ===== Fancybox（プライバシーポリシー等）iframeポップアップのサイズ調整 =====
   FancyBox for WordPress の iframe 自動計測で高さが0になる場合の対策。
   ビューポート基準で固定サイズを与える。 */
.fancybox-slide--iframe .fancybox-content {
  width: 800px !important;
  max-width: 92% !important;
  height: 86vh !important;
  max-height: 86vh !important;
}
.fancybox-slide--iframe .fancybox-content iframe {
  height: 100% !important;
  width: 100% !important;
}
