@charset "utf-8";
/****** Common CSS ******/
/*========= 基本設定 =========*/
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-family: "Noto Sans JP", "Hiragino Sans" , "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 100%;
	line-height: 1.8rem;
	text-align: justify;
	font-feature-settings: "palt";
	scroll-behavior: smooth;
}
body {
	position: relative;
	width: 100%;
	margin: 0 auto;
	color: #44546a;
	-webkit-text-size-adjust: 100%;
	background-color: #ffffff;
}
img {
	image-rendering: -webkit-optimize-contrast;
	border: 0;
	padding: 0;
	margin: 0;
	vertical-align: bottom;
}
a:hover img {
	opacity: 0.75;
	transition: 1s;
}
a {
	text-decoration: none;
	color: #44546a;
}
a:hover{
	color: #0066c0;
}
ul {
	list-style: none;
}
sub {
	vertical-align: sub;
	font-size: 12px;
	line-height: 0.9rem;
}
sup {
	vertical-align: super;
	font-size: 12px;
	line-height: 0.9rem;
}

/*========= adobe web font =========*/
.tangerineR{
	font-family: tangerine, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.tangerineB{
	font-family: tangerine, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.volutaR{
	font-family: voluta-script-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.alluraR{
	font-family: allura, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.zenR{
	font-family: zen-old-mincho, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.zenM{
	font-family: zen-old-mincho, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.zenB{
	font-family: zen-old-mincho, sans-serif;
	font-weight: 900;
	font-style: normal;
}

/*========= フォントサイズ =========*/
.large{
	font-size: 1.2rem;
}
.x-large{
	font-size: 1.4rem;
}
.xx-large{
	font-size: 1.6rem;
}
.xxx-large{
	font-size: 2rem;
}
.small{
	font-size: 0.95rem;
}
.x-small{
	font-size: 0.9rem;
}
.xx-small{
	font-size: 0.85rem;
}
.xxx-small{
	font-size: 0.8rem;
}
.bold{
	font-weight: bold;
}

/*========= 改行 =========*/
.brPc{
	display: none;
}
.brSp{
	display: block;
}

/*========= スクロールアニメーション =========*/
/* フェードイン */
.fadein {
  opacity: 0;
  transition: 1.6s;
}
.fadein.is-show {
  opacity: 1;
}

/* 下からフェードイン */
.fadein_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 1.6s;
}
.fadein_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* 左からフェードイン */
.fadein_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1.6s;
}
.fadein_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* 右からフェードイン */
.fadein_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 1.6s;
}
.fadein_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*========= pc 全画面(1280px～960px） ===============*/
/*========= ヘッダー =========*/
#header{
	position: fixed;
	top: 0;
	z-index: 99;
	height: 80px;
	width: 100%;
	padding: 0px 5px;
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 2px 10px 0 rgba(0,0,0, 0.4);
	transition: transform 0.6s 0.1s;
}
#header.hidden {
    transform: translateY(-80px);
}
#header .headerBox{
	max-width:1280px;
	margin: 0 auto;
	padding: 10px 10px;
	display: flex;
	justify-content:space-between;
}
#header .headLogo{
	display: flex;
	gap: 20px;
	align-items: center;
	align-self: center;
	z-index: 100;
}
#header .headLogo a:hover img{
	opacity: 1;
}
#header .headLogo .subLogo{
	font-size: 1rem;
	line-height: 1.2rem;
	font-weight: bold;
}

/* ハンバーガーメニュー */
#spNavi .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 150;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
#spNavi .hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
#spNavi .hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
#spNavi .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}
#spNavi .hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: transform .6s;
}

#spNavi .hamburger span:nth-child(1) {
    top: 30%;
}
#spNavi .hamburger span:nth-child(2) {
    top: 60%;
}
#spNavi .hamburger span:nth-child(3) {
    top: 90%;
}

/* メニュー */
#spNavi .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
	height: 120vh;
    background-color: #ffffff;
	visibility: hidden;
    opacity: 0;
	transition: opacity .6s, visibility .6s;
}
#spNavi .menu.is-active {
    visibility: visible;
    opacity: 1;
}
#spNavi .menu_inner {
    display: flex;
    justify-content: center;
    align-items: top;
    height: 100%;
    padding: 20px 20px;
	margin-top: 60px;
}
#spNavi .menu_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
	text-align: center;
}
#spNavi .menu_list li {
    border-top: solid 1px #eeeeee;
	padding: 26px 10px 10px 10px;
}
#spNavi .menu_list li span.eng {
    display: block;
	font-size: 2.8rem;
	line-height: 2.8rem;
}
#spNavi .menu_list li.menu_sns {
	display: flex;
	justify-content: center;
	gap: 20px;
}
#spNavi .menu_list li.menu_copy {
	font-size: 0.75rem;
}

/*=========　下部メニュー　=========*/
#foot {
	width: 100%;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
}
#foot .footBox{
	max-width: 1280px;
	margin: 0 auto;
	padding:60px 20px 80px 20px;
}
#foot .footBox .anniversaryLogo{
	text-align: center;
}
#foot .footBox .anniversaryLogo img{
	width:28%;
	max-width: 220px;
}
#foot .footBox ul.footMenu{
	display: flex;
	justify-content: center;
	margin: 40px 0px 0px 0px;
}
#foot .footBox ul.footMenu li{
	margin: 10px 40px;
}

/* テキストリンク */
#foot .footBox ul.footMenu li a {
  text-decoration: none;
  background-image: linear-gradient( #0066c0, #0066c0 );
  background-size: 0 1px;
  background-position: 50% bottom;
  background-repeat: no-repeat;
  transition: all .4s;
}
#foot .footBox ul.footMenu li a:hover {
  background-size: 100% 1px;
}

/*=========　フッター　=========*/
#footer{
	background-color: #eaf2db;
	padding: 30px 20px 20px 20px;
}
#footer .footerBox{
	max-width: 1280px;
	margin: 0 auto;
}
#footer .footerBox .sns{
	display: flex;
	gap: 50px;
	justify-content: center;
	margin: 20px 0px 30px 0px;
}
#footer .footerBox .sns img{
	width: 100%;
}
#footer .footerBox ul.sitemap{
	display: flex;
	justify-content: center;
}
#footer .footerBox ul.sitemap li{
	margin: 0px 40px;
}

/*=========　コピーライト　=========*/
#copyright{
	background-color: #44546a;
	color: #ffffff;
	text-align: center;
	padding: 25px 0;
	font-size: 0.9rem;
}

/*=========　ページトップ　=========*/
#pageTop {
	position: fixed;
	bottom: 5px;
	right: 5px;
	cursor: pointer;
}
#pageTop a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 60px;
	height: 60px;
	background:#44546a;
	border-radius:50%;
	color: #ffffff;
	transition:all 0.3s;
	z-index: 100;
}
#pageTop a:hover{
	background: #63d9a1;
}

/*=========　見出し　=========*/
#container .lead{
	text-align: center;
	background-color: #ffffff;
	padding: 160px 0px 40px 0px;
}
#container h2{
	font-size:2rem;
	line-height: 3.4rem;
	text-align: center;
	font-weight: normal;
}
#container h2 span.eng{
	font-size:4rem;
	font-weight: normal;
}

/*========= tablet_L（960px～768px） ===============*/
@media screen and (max-width:960px){

/*========= ヘッダー =========*/
#header .headLogo .subLogo{
	font-size: 1rem;
}

/*=========　フッター　=========*/
#footer .footerBox ul.sitemap li{
	margin: 0px 30px;
}
}

/*========= tablet_S（768px～480px） ===============*/
@media screen and (max-width:768px){
/*========= 基本設定 =========*/
html{
	font-size: 95%;
	line-height: 1.6rem;
}
	
/*========= 改行 =========*/
.brPc{
	display: block;
}
.brSp{
	display: none;
}

/*=========　下部メニュー　=========*/
#foot .footBox{
	padding:40px 10px 20px 10px;
}
#foot .footBox ul.footMenu li{
	margin: 0px 18px;
	font-size: 0.98rem;
}
#foot .footBox .anniversaryLogo img{
	width:28%;
}

/*=========　フッター　=========*/
#footer .footerBox ul.sitemap li{
	margin: 0px 24px;
	font-size: 0.98rem;
}

/*=========　コピーライト　=========*/
#copyright{
	padding: 16px 0;
	font-size: 0.8rem;
}

/*=========　ページトップ　=========*/
#pageTop a{
	width: 50px;
	height: 50px;
}
	
/*=========　見出し　=========*/
#container .lead{
	padding: 160px 0px 40px 0px;
}
#container h2{
	font-size:1.4rem;
	line-height: 3rem;
}
#container h2 span.eng{
	font-size:3.4rem;
}
}

/*========= sp（480px～360px）===============*/
@media screen and (max-width:480px) {
/*========= 基本設定 =========*/
html{
	font-size: 90%;
	line-height: 1.4rem;
}
	
/*=========　ヘッダー　=========*/
#header{
	height: auto;
}
#header .headerBox{
	padding: 10px 10px;	
}
#header .headLogo{
	gap: 0px;
}
#header .headLogo .logo{
	width: 80%;
}
#header .headLogo .subLogo{
	font-size: 0.95rem;
}

/*=========　下部メニュー　=========*/
#foot .footBox .anniversaryLogo img{
	width:40%;
}
#foot .footBox ul.footMenu{
	margin: 20px 0px 0px 0px;
}
#foot .footBox ul.footMenu li{
	margin: 0px 11px;
	font-size: 0.8rem;
}

/*=========　フッター　=========*/
#footer .footerBox ul.sitemap li{
	margin: 0px 12px;
	font-size: 0.8rem;
}
#footer .footerBox .sns{
	gap: 30px;
	margin: 20px 0px 20px 0px;
}
#footer .footerBox .sns img{
	width: 80%;
}

/*=========　コピーライト　=========*/
#copyright{
	padding: 10px 0;
	font-size: 0.75rem;
}
	
/*=========　見出し　=========*/
#container .lead{
	padding: 160px 0px 40px 0px;
}
#container h2{
	font-size:1.2rem;
}
#container h2 span.eng{
	font-size:3rem;
}
}

