@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;500&family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Noto+Serif+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/* 全体
------------------------------------------------------------ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
	line-height: 1.8;
	color: #262b2f;
	-webkit-text-size-adjust: 100%;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.lato {
	font-family: 'Lato', sans-serif;
}
.garamond {
	font-family: 'Cormorant Garamond', serif;
}
.mincho {
	font-family: 'Noto Serif JP', serif;
}

html {
	font-size: 62.5%;
	overflow-y: auto;
//	border-left: solid 8px #f4b0b1;
//	border-right: solid 8px #f4b0b1;
}
html:before {
	content: '';
	width: 100%;
	height: 8px;
	background: #f4b0b1;
	position: fixed;
	top: 0px;
	left: 0px;
    z-index: 3;
}
html:after {
	content: '';
	width: 100%;
	height: 8px;
	background: #f4b0b1;
	position: fixed;
	bottom: 0px;
	left: 0px;
    z-index: 3;
}
.opmenu {
  overflow: hidden;
  height: 100%;
}
body {
	font-size: 100%;
}
body:before {
	content: '';
	width: 8px;
	height: 100vh;
	background: #f4b0b1;
	position: fixed;
	top: 0px;
	left: 0px;
    z-index: 3;
}
body:after {
	content: '';
	width: 8px;
	height: 100vh;
	background: #f4b0b1;
	position: fixed;
	top: 0px;
	right: 0px;
    z-index: 3;
}
body img {
	vertical-align: bottom;
	border-style: none;
	max-width: 100%;
    height: auto;
}
body img.full {
	width: 100%;
}
a {
	text-decoration: underline;
//	color: #262b2f;
}
a:hover {
	text-decoration: none;
}
table {
	table-layout: auto;
	border-collapse: collapse;
	border-spacing: 0px;
}
.sp_br {
	display: none;
}
.nomal_size {
	font-size: 1.6rem;
}
.mid_size {
	font-size: 1.4rem;
}
.small_size {
	font-size: 1.2rem;
}
.inlineblock {
	display: inline-block;
}
.para {
	margin-bottom: 1.5em;
}
.para-half {
	margin-bottom: 1em;
}
.centernote {
    text-align: center;
}

/* 大枠 */
#allcontents {
}

/* ヘッダ */
header {
	width: 100%;
    height: 200px;
    position: relative;
    z-index: 2;
}
header > div {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
header .head_logo {
	background: url("../image/logo_w.svg") no-repeat left top;
	background-size: contain;
    margin: 20px 0 0 22px;
    display: inline-block;
    position: absolute;
    z-index: 801;
	transition: .3s;
}
header .head_logo a {
	vertical-align: bottom;
	display: block;
}
header .head_logo img {
    height: 44px;
	vertical-align: bottom;
	display: block;
}
header .head_logo.UpMove{
	position: fixed;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
header .head_logo.DownMove{
	position: fixed;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}




header .head_logo.floating_logo {
	position: fixed;
    animation: logoAnime .5s ease-in forwards, topmv none;
}
@keyframes logoAnime{
  from {
    opacity: 0;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.opmenu header {
	z-index: 20;
}
.opmenu header .head_logo {
	z-index: 900;
	transition: .3s;
}

header .page_title {
    font-size: 3rem;
    color: #00477c;
    line-height: 1.2;
    padding: 0 30px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}
header .page_title small {
    font-size: 2rem;
    font-weight: 500;
    color: #f4afb1;
    display: block;
}

/* コンテンツ */
article {
	margin: 0px auto;
	clear: both;
	background: #FFF;
	padding: 50px 30px 0;
}

@media (min-width: 768px) {
.sp_br {
	display: inline;
}
.nomal_size {
	font-size: 1.6rem;
}
.mid_size {
	font-size: 1.4rem;
}
.small_size {
	font-size: 1.2rem;
}

/* 大枠 */
#allcontents {
}
/* ヘッダ */
header {
    height: 300px;
}
header .head_logo {
	margin: 27px 0 0 39px;
}
header .head_logo img {
	height: 73px;
}

header .page_title {
    font-size: 3.5rem;
    padding: 0 50px;
}
header .page_title small {
    font-size: 2.5rem;
}

/* コンテンツ */
article {
	padding: 70px 50px 0;
    margin: auto;
    max-width: 1200px;
}

}

@media (min-width: 1200px) {
.opmenu {
  overflow: auto !important;
  height: auto;
}
.nomal_size {
	font-size: 1.8rem;
}
.mid_size {
	font-size: 1.6rem;
}
.small_size {
	font-size: 1.4rem;
}

/* ヘッダ */
header {
    height: 350px;
}
header > div {
	background-position: right -90px;
    background-size: 886px;
}
header > div:before {
	background-position: right top;
}
header .head_logo {
	margin: 29px 0 0 39px;
}
.opmenu header .head_logo {
    opacity: 1 !important;
}
header .floating_logo {
	position: fixed;
	animation-name: logoAnime2;
}
@keyframes logoAnime2{
  from {
    opacity: 0;
	top: 52px;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
	top: 52px;
  transform: translateY(0);
  }
}

header .page_title {
    font-size: 4rem;
    width: 1200px;
    left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
header .page_title small {
    font-size: 3rem;
}

/* コンテンツ */
article {
	padding: 100px 50px 0;
}

}


/* フッタ
------------------------------------------------------------ */
footer {
}
footer .footer_menu {
    display: none;
}
footer .footer_info {
	padding: 30px 20px;
}
footer address,footer address {
	display: table;
	margin: auto;
}
footer address,footer address * {
	line-height: 1.6;
	font-style: normal;
}
footer address span {
	line-height: 1.6;
	font-style: italic;
    display: block;
    text-align: center;
}
footer address strong {
	font-size: 2.6rem;
	font-style: italic;
	display: inline-block;
	margin-left: 0.8ex;
}
footer .copyright {
	margin-top: 20px;
	text-align: center;
}
footer .copyright img {
	width: 190px;
	height: auto;
	display: block;
	margin: 0 auto 5px;
}


@media (min-width: 768px) {
footer {
}
footer .footer_info {
	padding: 40px 40px;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:reverse;
    -webkit-flex-direction:row-reverse;
    -ms-flex-direction:row-reverse;
    flex-direction:row-reverse;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
}
footer address,footer address {
	margin: 0;
}
footer address span {
	font-size: 2.4rem;
    text-align: right;
}
footer address strong {
	font-size: 3.4rem;
}
footer .copyright {
	font-size: 1.2rem;
	margin-top: 0px;
	text-align: left;
}
footer .copyright img {
	width: 264px;
	margin: 0 0 10px;
}
}
@media (min-width: 1200px) {
footer {
    margin-top: 100px;
}
footer .footer_menu {
    display: block;
    margin: 0 0 30px;
    padding-top: 50px;
}
footer .footer_menu ul {
    list-style: none;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
footer .footer_menu ul a {
    text-decoration: none;
    margin: 0 2em;
    padding-bottom: 20px;
    position: relative;
}
footer .footer_menu ul a.carrent:before,
footer .footer_menu ul a:hover:before {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: #f4afb1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  bottom: 0px;
    -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
footer .footer_info {
	padding: 60px;
}
footer address span {
	font-size: 2.8rem;
}
footer address strong {
	font-size: 3.8rem;
}
footer .copyright img {
	margin-bottom: 20px;
}
}


/* ■■■■■■■■■■■■■■■■■■■■■ メニュー ■■■■■■■■■■■■■■■■■■■■■ */

/* スマホ */
#menu-box {
	margin: 0px;
	width: 100%;
    height: 76px;
	clear: both;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 800;
	box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-o-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-ms-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
}

#menu-box.UpMove2{
    background: #fff;
	position: fixed;
	animation: UpAnime2 0.5s forwards;
}

@keyframes UpAnime2{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
#menu-box.DownMove2{
    background: #fff;
	position: fixed;
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}



#menu-box.floating {
    background: #fff;
	position: fixed;
	box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-o-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-ms-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
    animation: logoAnime .5s ease-in forwards, topmv none;
}

@keyframes menuAnime{
  from {
    opacity: 0;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#menu-box * {
}
#toggle {
	cursor: pointer;
	padding: 0px;
	width: 44px;
	height: 44px;
    position: relative;
    z-index: 100;
    margin: 20px 20px 0px auto;
}
#toggle a {
    font-size: 1.4rem;
    color: #00477c;
	display: block;
	height: 44px;
	margin: 0px;
    padding-top: 22px;
    text-align: center;
    vertical-align: bottom;
    text-decoration: none;
	position: relative;
	transition: .3s;
}

#toggle span {
	display: block;
	width: 44px;
	height: 3px;
	background: #00477c;
	position: absolute;
	top: 11px;
	left: 0px;
	transition: .3s;
}
#toggle span:before, #toggle span:after{
	display: block;
	content: "";
	width: 44px;
	height: 3px;
	background: #00477c;
	position: absolute;
	transition: .3s;
}
#toggle span:before{
	top: -9px;
}
#toggle span:after{
	top: 9px;
}
#toggle span.close {
  background: transparent !important;
}
#toggle span.close:before, #toggle span.close:after{
	top: 0;
}
#toggle span.close:before{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#toggle span.close:after{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#menu-box #menu {
	display: none;
	width: 100%;
	height: 100vh;
	padding: 0px;
	left: 0px;
	top: 0px;
	background: #fff;
	z-index: 99;
	position: fixed;
}
#menu nav {
    margin-top: 100px;
    max-height: 90vh;
	max-height: -webkit-calc(100vh - 70px);/*Chrome19~25対応*/
	max-height: -moz-calc(100vh - 70px);/*Firefox4~15対応*/
	max-height: calc(100vh - 70px);
    overflow-y: auto;
	position: relative;
}
#menu nav div {
	margin: 0px 30px 80px;
}
#menu nav ul {
	list-style: none;
	font-size: 1.8rem;
    margin-bottom: 1em;
}
#menu-box #menu ul.menu_main > li {
    background-image: linear-gradient(to right, #363b3f, #363b3f 2px, transparent 2px, transparent 6px);
    background-size: 8px 2px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
#menu-box #menu ul.menu_main > li > a {
	font-weight: 500;
    text-decoration: none;
	display: block;
    padding: 1em 1em 1em 2em;
    position: relative;
}
#menu-box #menu ul.menu_main > li > a:before {
    content: '';
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: #f4afb1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    position: absolute;
    left: 0.5em;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (min-width: 360px) {
#menu-box #menu ul.menu_main > li .sub_menu > ul > li > a {
	font-size: 1.6rem;
}
}

@media (min-width: 375px) {
}

/* タブレット */
@media (min-width: 768px) {
#menu-box {
    height: 118px;
}
#toggle {
	width: 73px;
	height: 73px;
	margin: 27px 40px 23px auto;
}
#toggle a {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
	height: 73px;
    padding-top: 42px;
}

#toggle span {
	width: 70px;
	height: 4px;
	top: 22px;
}
#toggle span:before, #toggle span:after{
	width: 70px;
	height: 4px;
}
#toggle span:before{
	top: -14px;
}
#toggle span:after{
    top: 14px;
}
#toggle span.close:before, #toggle span.close:after{
}
#menu-box.floating {
  box-shadow: 0px 5px 8px 0px rgba(37,43,47,0.05);
  -webkit-box-shadow: 0px 5px 8px 0px rgba(37,43,47,0.05);
  -moz-box-shadow: 0px 5px 8px 0px rgba(37,43,47,0.05);
  -o-box-shadow: 0px 5px 8px 0px rgba(37,43,47,0.05);
  -ms-box-shadow: 0px 5px 8px 0px rgba(37,43,47,0.05);
}
#menu nav {
	margin-top: 140px;
    max-height: 90vh;
	max-height: -webkit-calc(100vh - 118px);/*Chrome19~25対応*/
	max-height: -moz-calc(100vh - 118px);/*Firefox4~15対応*/
	max-height: calc(100vh - 118px);
}
#menu nav div {
	margin: 0px 50px 100px;
}
#menu nav ul {
	font-size: 2rem;
}

#menu-box #menu ul.menu_main > li > a {
    padding: 1.5em 1.5em 1.5em 2em;
}
}

/* PC */
@media (min-width: 1200px) {
/* メインメニュー */
#menu-box {
    width: 100%;
}
#menu-box.floating {
	height: 120px;
}
#menu-box.floating:after {
    background-position: right top;
}
#toggle {
	display: none;
}
#menu-box #menu {
	background: none;
	height: 118px;
	margin: auto;
	padding: 0;
	overflow: visible;
	display: block !important;
    position: static;
}
#menu nav {
  margin: 0;
  padding: 0px;
  height: auto;
  max-height: none;
    overflow: visible;
    width: 100%;
	height: 100%;
}
#menu nav div {
    margin: 0;
}

#menu-box #menu ul.menu_main {
	height: 118px;
    padding: 0 50px 0 430px;
    margin: 0;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:end;
    -webkit-justify-content:flex-end;
    -ms-flex-pack:end;
    justify-content:flex-end;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#menu-box.floating #menu ul.menu_main {
    padding-left: 320px;
}
#menu-box #menu ul.menu_main > li {
//	width: 25%;
    border: none;
    background: none;
    position: relative;
}
#menu-box #menu ul.menu_main > li > a {
    padding: 1.5em 0 1em;
    margin-left: 2em;
    white-space: nowrap;
    position: relative;
}
#menu-box #menu ul.menu_main > li > a:before {
    content: none;
}
#menu-box #menu ul.menu_main > li > a.carrent:before,
#menu-box #menu ul.menu_main > li > a:hover:before {
    content: '';
    left: 50%;
    top: auto;
    bottom: 8px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
}

@media (min-width: 1300px) {
//#menu-box #menu ul.menu_main > li .sub_menu {
//    margin-left: -5%;
//	margin-left: -webkit-calc((-100vw + 1300px) / 2);/*Chrome19~25対応*/
//	margin-left: -moz-calc((-100vw + 1300px) / 2);/*Firefox4~15対応*/
//	margin-left: calc((-100vw + 1300px) / 2);  
//}
#menu-box #menu ul.menu_main > li:hover .sub_menu {
    margin-left: -5%;
	margin-left: -webkit-calc((-100vw + 1300px) / 2);/*Chrome19~25対応*/
	margin-left: -moz-calc((-100vw + 1300px) / 2);/*Firefox4~15対応*/
	margin-left: calc((-100vw + 1300px) / 2);  
}
#menu-box #menu ul.menu_second {
    position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -600px;
}

}




/* ポジション配置用初期タグ */
.positionSet {
	position: relative;
}

/* begin clearfix 〜ボックス終わりに自動フロートクリア */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-table;zoom:1;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end clearfix */

/* iepngfix efect */
.iepngfix {
  behavior: expression(IEPNGFIX.fix(this));
}
/* end iepngfix efect */


