@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */


/*General Elements
---------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: "ryo-gothic-plusn", "Noto Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color: #757F88;
}

:lang(en) {
  font-family: "kozuka-gothic-pro", sans-serif;
	letter-spacing: 0.1em;
	font-weight: 300;
	font-style: normal;
}


a {
	text-decoration: underline;
	outline: none;
}

a:hover,
a:active,
a:visited,
a:focus {
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*l-header
---------------------------------------------------------------------------- */
.l-header {
	position: fixed;
	z-index: 20;
	padding: 20px 40px;
	width: 100%;
	left: 0;
	top: 0;
}

.l-header .logo {
	width: 120px;
	position: relative;
}

.l-header .logo a {
	display: block;
	transition: .3s;
}

.l-header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.logo-scrolled {
  opacity: 0;
}

.l-header.is-scrolled .logo-default {
  opacity: 0;
}

.l-header.is-scrolled .logo-scrolled {
  opacity: 1;
}


.l-menu {
	position: absolute;
	z-index: 1000;
	background: rgb(255 255 255 / 30%);
	right: 40px;
	top: 20px;
	padding: 8px 0 6px;
	border-radius: 5px;
	transition: .3s;
	width: 100px;
	height: 35px;
}

/* メニューボタン */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
	color: #fff;
	margin: 0 auto;
}

/* 二本ライン */
.menu-icon {
  position: relative;
  width: 30px;
  height: 8px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

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

.menu-icon span:nth-child(2) {
  bottom: 0;
}

/* open時：二本→一本に重ねる */
.menu-btn.is-open .menu-icon span:nth-child(1) {
  top: 3px;
}

.menu-btn.is-open .menu-icon span:nth-child(2) {
  bottom: 4px;
}

/* Menu / Close */
.menu-text {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.menu-btn.is-open .menu-icon span {
	background: #7092B1;
}

.menu-btn.is-open .menu-text {
	color: #7092B1;
}

.l-menu.is-open {
	background: rgb(155 179 201 /30%);
}


.l-header.is-scrolled .menu-btn .menu-icon span {
	background: #7092B1;
}

.l-header.is-scrolled .l-menu {
	background: rgb(155 179 201 /30%);
}

.l-header.is-scrolled .menu-btn .menu-text {
	color: #7092B1;
}


@media screen and (min-width: 768px){

	.l-header .logo a:hover {
		opacity: .8;
	}

}

@media screen and (max-width: 767px){
	.l-header {
		padding: 25px 20px;
	}

	.l-header .logo {
    width: 80px;
	}

	.l-menu {
	    right: 10px;
	    top: 20px;
	    height: 28px;
	    width: 50px;
	    padding: 10px 0 0;
	}

	.menu-text {
	    display: none;
	}

	.menu-icon {
	    width: 20px;
	}

}


/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
	position: fixed;
	z-index: 12;
	height: 100vh;
	top: 0;
	background: #fff;
	border: solid 5px #7092B1;
}

.l-gNav-list {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.l-gNav-list li {
	font-size: 2.2rem;
	letter-spacing: 0.2em;
	font-family: "kozuka-gothic-pro", sans-serif;
	font-weight: 300;
	line-height: 1;
}

.l-gNav-list li + li {
	margin-top: 50px;
}

.l-gNav-list li a {
	text-decoration: none;
	display: inline-block;
	color: #7092B1;
	position: relative;
}

@media screen and (min-width: 768px){

	.l-gNav {
		width: 50%;
		right: -50%;
		transition: .5s;
	}

	.l-gNav.is-open {
		right: 0;
	}

	.l-gNav-list li a::before {
		position: absolute;
		content: "";
		width: 0;
		height: 1px;
		background: #7092B1;
		left: 50%;
		bottom: -5px;
		transform: translateX(-50%);
		transition: .3s;
	}

	.l-gNav-list li a:hover::before {
		width: 100%;
	}
}


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

	.l-gNav {
		display: none;
		width: 100%;
	}

}


/* l-topicPath
---------------------------------------------------------------------------- */
.l-topicPath {
}

.l-topicPath li {
    display: inline-block;
}

.l-topicPath li.p-topicHome {
    /*
    background: url(../../../images/common/bg_crumb_home.png) left center no-repeat;
    padding-left: 22px;
    */
}

.l-topicPath li a {
    text-decoration: underline;
    color: #0588ce;
}

.l-topicPath li a:hover {
    text-decoration: none;
}

.l-topicPath-arrow {
    margin-left: 0.5em;
}

.l-topicPath-arrow:before {
    content: '＞ ';
}

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


/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
    width: 100%;
}

@media screen and (max-width: 767px){
    .l-pageBody {
        min-width: 0;
    }
}


/* l-sidebar
---------------------------------------------------------------------------- */
.l-sidebar {
}

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


/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
}

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


/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
	position: relative;
	z-index: 10;
	background: #7092B1;
}

.l-footer p {
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	padding: 10px 0;
	line-height: 1;
}


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

	.l-footer p {
		font-size: 1rem;
	}
}
