@charset "UTF-8";
/* CSS Document */
html {    /*全体的の体裁指定*/
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {    /*フォント関連の指定*/
  color: #333; /* RGB */
  font-family: 'Kiwi Maru', serif, Klee One, cursive, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;  /*フォントの太さ指定。*/
  font-size: 1.6em;  /*htmlでの指定よりも優先してこっちがあたる。*/
  /*line-height: 2.4rem;  だいたいフォントの1.5倍ぐらいが良いらしい。*/
  text-align: center;
}

h1, h2, h3, h4, h5, h6, p, a {
  padding: 16px;
  font-family: 'Kiwi Maru', serif;
  max-width: 984px;
  margin: auto;
}
small, address {
  padding: 5px 16px;
  max-width: 984px;
  font-size: 1.2rem;
  line-height: 2.6rem;
  margin: auto;
}
p, li, small {
  line-height: 2.8rem;}
.strong {
  font-weight: 600;
}
small {
  max-width: 450px;
}
h1 {
  color: #fff;
  text-align: left;
  font-size: 4.0rem;
  font-weight: 700;
  padding-top: 120px;
}
h3 {
  font-size: 3.6rem;
 position: relative;
  color: #fff;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 4px #333;
}
h3:before {
  content: "";
  position: absolute;
  background: #123479;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  border: dashed 1px white;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  box-shadow: 0px 0px 0px 5px #123479;
}
h4 {
  position: relative;
  display: inline-block;
  padding: 20px 55px;
  font-size: 2.0rem;
}
h4 {
  line-height: 4.0rem;
}
h4:before, h4:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
}

h4:before {
  left:0;
}
h4:after {
  right: 0;
}

h5 {
	position: relative;
	padding-top: 50px;
	padding-left: 30px;
	font-size: 1.8rem;
}

h5 span {
	position: relative;
	z-index: 2;
}
h6 {
  text-align: left;
  width: 170px;
}
h6 span {
	position: relative;
}
h5:before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
	top: 0px;
	left: 20px;
	color: hsla(220,74%,27%,0.10);
	font-size: 25vw;
	font-weight: 300;
	font-family: luxus-brut, cursive;
	font-style: italic;
}
ul li {
  list-style: none;
}
ul li a {
  text-decoration: none;
  color: #333;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
#logo {
  max-width: 70px;
}

/*ナビゲーション関連ここから*/
.none {
  display: none;
}
.visually-hidden {    /*テキストとして読ませるけど、表示だけ見えなくする*/
  display: block;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}
/*ナビゲーション関連おわり*/

/*headerここから*/
.header__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 984px;
  margin: 0 auto;
}
.header__wrapper a {
  padding: 5px;
  margin: 0;
}

@media(max-width:480px) {
/*ハンバーガーアイコンここから*/
  #nav-drawer {
    padding: 18px 20px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: ""
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #FFF;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-130%);
    transition: 0.5s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.35);
  }

  #nav-content ul {
    margin-bottom: 36px;
    display: block;
  }

  #nav-content ul li {
    margin-bottom: 20px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
/*ハンバーガーアイコンここまで*/

#nav-content ul {
  display: flex;
}
/*headerここまで*/


/*kv共通ここから*/
.kv > p {
  line-height: 4.8rem;
  padding: 80px 16px 60px;
}
/*kv共通ここまで*/


/*footerここから*/
.footer {
  background-color: #123479;
  color:#fff;
  min-height: 170px;
  padding: 16px;
}
.footer a {
  color: #fff;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 768px;
  margin: 0 auto;
  flex-direction: row-reverse;
}
.footer__wrapper__nav {
  text-align: left;
  list-style: none;
  line-height: 2.4rem;
}
.footer__wrapper > div {
  text-align: right;
}
.footer__wrapper h6 {
  text-align: right;
}
small {
  display: block;
}
small a {
  text-decoration: none;
}
/*footerここまで*/

/*モーダルここから*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/*モーダルここまで*/
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#scroll-up a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #be2221;
  border-radius: 50px;
  border: solid #fff 3px;
  width: 15px;
  height: 15px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
.up {
      display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 3em;
    height: 3em;
    border: 0.5em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(
-45deg);
}

/*リンクを右下に固定*/
#scroll-up {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#scroll-up.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#scroll-up.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}


/*Wordpressの打ち消し*/
.entry-header {
display:none;
}