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


/* ---------------------------------------------------------------------------------------------

   Wrap,Contents-wrap,Contents

--------------------------------------------------------------------------------------------- */
.wrap{
	width: 100%;
	overflow: hidden;
}

.contents-wrap{
	width: 100%;
	margin: 0 auto;
    padding: 65px 0 75px 0;
    position: relative;
}

.top-contents-wrap{/*ページ最上部*/
	width: 100%;
	margin: 0 auto;
    padding: 150px 0 75px 0;/*85px差*/
    position: relative;
}

.no-p-contents-wrap{/*no padding*/
	width: 100%;
	margin: 0 auto;
    padding: 0 0 75px 0;
    position: relative;
}

.minamo-bg{/*水面背景*/
    background: url("../images/Aqua-back.webp") repeat 0 0;
}
.minamo-bg2{/*水面背景*/
    background: url("../images/Aqua-back02.webp") repeat 0 0;
}

.gray-lezac-bg{/*グレイレザック背景*/
    background: url("../images/gray-lezac-bg.webp") repeat 0 0;
}
.brown-lezac-bg{/*ブラウンレザック背景*/
    background: url("../images/brown-lezac-bg.webp") repeat 0 0;
}
.white-bg{/*ホワイト透過背景*/
    background: url("../images/white-bg.webp") repeat 0 0;
}
.black-bg{/*ブラック透過背景*/
    background: url("../images/black-bg.webp") repeat 0 0;
}

.contents100P{
	width: 100%;
	margin: 0 auto;
}
.contents1200{
	width: 1200px;
	margin: 0 auto;
}
.contents1000{
	width: 1000px;
	margin: 0 auto;
}
.contents1400{
	width: 1400px;
	margin: 0 auto;
}
.contents800{
	width: 800px;
	margin: 0 auto;
}
.contents700{
	width: 700px;
	margin: 0 auto;
}
.contents500{
	width: 500px;
	margin: 0 auto;
}
.contents150{
	width: 150px;
	margin: 0 auto;
}

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

.contents1400{
	width: 90%;
}
}

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

.contents1200{
	width: 90%;
}
}

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

.contents1000{
	width: 90%;
}
}

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

.contents800{
	width: 90%;
}
}

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

.contents700{
	width: 90%;
}
}

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

.contents500{
	width: 90%;
}
}


/* ---------------------------------------------------------------------------------------------

   Footer

--------------------------------------------------------------------------------------------- */
footer{
    padding: 35px 0 0 0;
}

.foot-logo img{
    width: 300px;
    height: auto;
    margin: 0 auto;
}

/*インスタ、グーグルリンク
-----------------------------------------------------------*/
.foot-link{
    margin-top: 25px;
}

.foot-link ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.foot-link ul li a{
    display: block;
    width: 45%;
	font-size:30px;
}
.fa-instagram,.fa-google{
    color: #e9e4d4;
}

footer .contents500{
    margin-top: 25px;
}

footer .text-jp{
    text-shadow: 0 0 5px #000,0 0 5px #000,0 0 5px #000;
    font-size: 14px;
}

.foot-nav{
    width: 100%;
    margin-top: 25px;
}

.foot-nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*justify-content: center;*/ /* 横方向（左右） */
    /*align-items: center;*/     /* 縦方向（上下） */
    border-top: 0.5px solid #fff;
    border-bottom: 0.5px solid #fff;
}

.foot-nav ul li{
	font-size: clamp(14px, 3vw, 16px);
    width: 20%;
    text-align: center;
    line-height: 2.5;
}
.foot-nav ul li a{
    display: inline-block;
    color: #e9e4d4;
	font-family: 'Ibarra Real Nova', serif;
    text-shadow: 0 0 5px #000,0 0 5px #000,0 0 5px #000;
	font-size: 16px;
}

@media screen and (max-width:500px) {
    
.foot-logo img{
    width: 250px;
}

.foot-nav ul li{
    width: 100%;
}
}

/* ---------------------------------------------------------------------------------------------

   スキップリンク（キーボードユーザー向け）

--------------------------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #333;
    color: #e9e4d4;
    padding: 8px 16px;
    font-size: 14px;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}


/* ---------------------------------------------------------------------------------------------

   現在ページナビゲーション

--------------------------------------------------------------------------------------------- */
.nav-current {
    color: #fff !important;
    text-shadow: 0 0 5px #fff !important;
}

.text-center {
    text-align: center;
}


/* ---------------------------------------------------------------------------------------------

   NEWSページネーション

--------------------------------------------------------------------------------------------- */
.pagination {
    margin-top: 40px;
    text-align: center;
}
.pagination ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}
.pagination ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: transparent;
    border: 0.5px solid #999;
    color: #e9e4d4;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.pagination ul li a:hover,
.pagination ul li a.current {
    background: #e9e4d4;
    color: #333;
}


/* ---------------------------------------------------------------------------------------------

   prefers-reduced-motion（動きを抑えたい設定の場合）

--------------------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade,
    .top_fade,
    .left_fade,
    .bottom_fade {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ---------------------------------------------------------------------------------------------

   コピーライト

--------------------------------------------------------------------------------------------- */
.copy{
    width: 100%;
    background: #333;
    text-align: center;
    padding: 25px 0;
    color: #e9e4d4;
	font-family: 'Sorts Mill Goudy', serif;
	font-size: clamp(10px, 3vw, 14px);
    line-height: 1;
    text-shadow: 0 0 5px #000,0 0 5px #000,0 0 5px #000;
    margin-top: 50px;
}


/* ---------------------------------------------------------------------------------------------

   Page-Top

--------------------------------------------------------------------------------------------- */
#Page-Top {
    position: fixed;
    right: -80px;
    bottom: 50px;
	z-index: 100;
}

#Page-Top a{
    display: flex;
    justify-content: center;
    background: #e9e4d4;
    transition: opacity .6s ease;
    align-items: center;
    text-decoration: none;
    border-radius: 100%;
	padding: 20px;
}
#Page-Top a:hover {
    opacity: 0.75;
}

#Page-Top .fa-chevron-up{
	line-height: 1;
	font-size: clamp(12px, 3vw, 18px);
}
#Page-Top a .fa-chevron-up{
	color: #000;
}


/* ---------------------------------------------------------------------------------------------

   Fadeアニメーション設定

--------------------------------------------------------------------------------------------- */
 .fade{
  opacity: 0;
   transform: translate3d(0, 0, 0);
  transition: all 3s ease;/*fadeスピード*/
  &.full {
   transition: all 0.1 ease;
  }
}

 .top_fade{
  opacity: 0;
   transform: translate3d(0, -50px, 0);
  transition: all 1s ease;/*fadeスピード*/
  &.full {
   transition: all 0.8 ease;
  }
}

 .left_fade{
  opacity: 0;
   transform: translate3d(-100%, 0, 0);
  transition: all 1s ease;/*fadeスピード*/
  &.full {
   transition: all 0.8 ease;
  }
}

 .bottom_fade{
  opacity: 0;
   transform: translate3d(0, 100px, 0);
  transition: all 1s ease;/*fadeスピード*/
  &.full {
   transition: all 0.8 ease;
  }
}

.fade-content .anm_mod.active {
 opacity: 1;
 transform: translate3d(0, 0, 0);
}

.graph-area .m-text{
	padding-left: 1em;
	line-height: 1.5 !important;
}


































































