@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}


html {
	background-color: #f5f5f5;
	width: 100%;
	max-width: 100%;

}

/* Sections */
/* ============================================ */



body {
	background-color: #f5f5f5;
  font-family: "Zen Kaku Gothic New", serif;
	width: 100%;
}

main {
	background-color: #f5f5f5;
	width: 100%;
	margin: 0 auto;

}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Zen Maru Gothic", serif; 
}



/* ヘッダー */


.header {
  background-color: #3184cd;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
	border-bottom: 1px solid #25639a;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
  width: 380px;
}


.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}


/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 40%;
  top: 0;
  width: 60%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #3184cd;
  transition: ease .4s;
	border-left: 1px solid #25639a;
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 50%;
  display: block;
  text-align: left;
  font-size: 1.2rem;
  margin: 0 auto 24px;
	padding: 0 0 0 0.8rem;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
	padding: 1rem 1.2rem;
}


@media screen and (max-width:600px) {

.header__nav {
  position: absolute;
  right: 0;
  left: 40%;
  top: 0;
  width: 60%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #3184cd;
  transition: ease .4s;
	border-left: 1px solid #25639a;
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 80%;
  display: block;
  text-align: left;
  font-size: 1rem;
  margin: 0 auto 24px;
	padding: 0 0 0 0.4rem;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
	padding: 1rem;
}
/* ヘッダーのロゴ部分 */
.header__title {
  width: 280px;
}

}
/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}


/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}