@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

.l-inner{
  max-width: 1200px;
  margin-inline:auto;
  padding-inline:20px;
}

.en_font {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

main{
  margin-top: 60px;
}
/*===================*
        header
/*===================*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}
.header__inner {
  padding: 13.5px 20px;
}
.header__nav {
  /*spの場合非表示*/
  display: none;
}

/*アイコン*/
.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 26px;
  right: 30px;
  width: 50px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #444;
  transition: all 0.3s ease;
}

/*メニューが開いている時*/
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
    rotate: 45deg;
    translate: 0 7.5px;
    background: #444;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
    display: none;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
    rotate: -45deg;
    translate: 0 -7.5px;
    background: #444;
  }

/*ドロワーメニュー*/
.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  transition: width 0.5s ease, height 0.5s ease;
}
.drawer.js-show {
  width: 260px;
  height: 100vh;
  height:100svh;
}
.drawer__body {
  width: 100%;
  height: 0;
  transition: height 0.5s ease;
}
.drawer.js-show .drawer__body {
  height: fit-content;
  padding-block: 88px 67px;
  padding-left: 34px;
}
.drawer__nav {
  opacity: 0;
  visibility: hidden;
  transform: translateX(101%);
}
.drawer.js-show .drawer__nav {
  animation: fadeInNav 0.1s 0.1s ease forwards;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
}
@keyframes fadeInNav {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 37px;
  width: fit-content;
}
.drawer__list li a {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001A75;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/*===================*
     　   fv
/*===================*/
.fv {
  width: 100%;
  overflow: hidden;
}

.fv__inner {
  width: 100%;
  padding-inline: 80px;
  margin-inline: auto;
  position: relative;
}

.fv__swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv__swiper-container {
  position: relative;
}

.fv__swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-slide{
  width: 100%!important;
  height: 85vh!important; /* 画面全体の高さに合わせる例 */
  height: 85svh!important;
  background-size: cover!important; /* 背景画像をスライド全体に表示 */
  background-position: center!important; /* 背景画像を中央に配置 */
  background-repeat: no-repeat!important; /* 繰り返さない */
}

.fv__swiper-slide.--slide1 {
  background: #d9d9d9;
}

.fv__swiper-slide.--slide2 {
  background: lightblue;
}

.fv__swiper-slide.--slide3 {
  background: pink;
}

.fv__swiper-slide.--slide4 {
  background: yellow;
}

.fv__swiper-slide.--slide5 {
  background: yellowgreen;
}

/* 分数表示の部分 */
.swiper-pagination-fraction {
  top: 20px;
  bottom: unset;
  left: unset!important;
  right: 20px;
  width: fit-content!important;
  font-size: 20px;
  display: flex;
  column-gap: 8px;
}

/* デフォルトの / を消す */
.swiper-pagination-separator {
  opacity: 0;
}

.swiper-pagination-current,
.swiper-pagination-total {
  color: #444;
  font-size: 20px;
  line-height: normal;
  display: inline-block;
}

/* 現在の数字 (上) */
.swiper-pagination-current {
  margin-bottom: 15px;
}

/* 全体の数字 (下) */
.swiper-pagination-total {
  margin-top: 15px;
}

@media screen and (max-width:768px){
  .fv__inner {
    padding-inline: 20px;
  }
  .swiper-slide{
    height: 65vh!important; /* 画面全体の高さに合わせる例 */
    height: 65svh!important;
  }
}

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


/*===================*
        GALLERY
/*===================*/
.gallery {
  background: #fff;
}

.parallax__section {
  margin-top: 100px;
  margin-inline: auto;
  position: relative;
}

/* parallax1 =============== */
.parallax1 {
  width: min(1200px, 100%);
}

.parallax1__text {
  position: absolute;
  top: 167px;
  left: 20px;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  mix-blend-mode: difference;
}

.parallax1__img {
  margin-left: auto;
  width: min(867px, 100%);
  height: auto;
  aspect-ratio: 867 / 488;
}

.parallax1__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* parallax2 =============== */
.parallax2 {
  width: min(1200px, 100%);
  margin-top: 200px;
  overflow-x: hidden;
}

.parallax2__img.--img1 {
  width: 627px;
  height: auto;
  aspect-ratio: 627 / 470;
  padding-top:100px;
}

.parallax2__img.--img2 {
  width: 263px;
  height: auto;
  aspect-ratio: 263 / 210;
  margin-top: -160px;
  margin-left: auto;
  margin-right: 10%;
}

.parallax2__img.--img3 {
  width: 324px;
  height: auto;
  aspect-ratio: 324 / 461;
  margin-top: 180px;
  margin-left: 126px;
}

.parallax2__img.--img4 {
  width: 641px;
  height: auto;
  aspect-ratio: 641 / 380;
  margin-top: -90px;
  margin-left: auto;
}

.parallax2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:768px){
  .parallax__section{
    padding-top:160px;
  }

  .parallax1__img {
    width: min(768px, 100%);
    aspect-ratio: 867 / 400;
  }

  .parallax1__text {
    font-size: 21px;
  }

  .parallax2 {
    margin-top: 100px;
  }

  .parallax2__img.--img1 {
    width: 480px;
    aspect-ratio: 480 / 440;
  }

  .parallax2__img.--img2 {
    margin-top: 0px;
  }

  .parallax2__img.--img3 {
    margin-top: 80px;
    margin-left: 56px;
    width: 200px;
    aspect-ratio: 200 / 300;
}
.parallax2__img.--img4 {
    width: 400px;
    height: auto;
    aspect-ratio: 400 / 300;
    margin-top: 90px;
    margin-left: auto;
}
}

@media screen and (max-width:460px){
  .parallax1__img {
    width: min(460px, 100%);
    aspect-ratio: 460 / 340;
  }

  .parallax2__img.--img1 {
    width: 380px;
    aspect-ratio: 380 / 340;
  }

  .parallax2__img.--img2 {
    margin-right: 0;
  }

  .parallax2__img.--img3 {
    margin-top: 100px;
    margin-left: 46px;
    width: 140px;
    aspect-ratio: 140 / 250;
  }

  .parallax2__img.--img4 {
    width: 300px;
    aspect-ratio: 300 / 340;
}

}
/*===================*
        Diary
/*===================*/
.life__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-block: 0;
  padding-inline: 20px;
}

.life__link {
  display: inline-block;
  position: relative;
}

@media (any-hover: hover) {
  a.life__link:hover .life__link-img-wrap img {
    transform: scale(1.15);
    opacity: 1;
  }
}

.life__link-img-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.life__link-img-wrap img {
  width: 100%;
  transition: transform 0.6s ease;
}


/* life title */
.life__area{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.life__area--title{
  color: #FFF;
  font-size:102px;
  line-height: 110%;
}

@media (any-hover: hover) {
  .life__link:hover .life__link-arrow {
    width: 100px;
  }

  .life__link:hover .life__link-circle {
    background: #FFF;
  }
}

.life__link-text {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  font-size:20px;
  color: #FFF;
}

.life__link-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% + 5px);
  transform: translate(0, -50%);
  left: calc(100% + 21.4px);
  width: 60px;
  height: 1px;
  background: #FFF;
  transition: width 0.5s ease;
}

.life__link-arrow::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 1px;
  background: #FFF;
  transform: rotate(45deg);
  transform-origin: right center;
}

.life__link-circle {
  position: absolute;
  top: calc(50% + 5px);
  transform: translate(0, -50%);
  left: calc(100% + 102px);
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #FFF;
  transition: background 0.5s ease;
}
/* 最新の投稿 */
.toppage-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 4px 10px;
  border-bottom: 1px solid #ddd;
}

.post__date {
  font-size: 14px;
  flex-shrink: 0;
}

.post__title {
  flex-grow: 1;
  margin-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post__title a:hover{
  opacity: 0.7;
}

@media screen and (max-width:460px){
  .life__area--title {
    font-size: 18vw;
    line-height: 100%;
  }
  .life__link-arrow {
    top: calc(50% + 2px);
    left: calc(100% + 11.4px);
    width: 30px;
  }
}
/*===================*
        FLOW
/*===================*/
.flow__inner{
	display: flex;
	justify-content: space-between;
	position: relative;
  max-width: 1400px;
  margin-inline: auto;
}

/*画像のブロック*/
.flow__img{
	width: 50vw;
	height: 80vh;
	display: flex;
	align-items: center;
	position: sticky;
	position: -webkit-sticky;
	top:0;
  margin-right: 40px;
}
.flow__img p {
	height: 400px;
	margin: auto;
	display: block;
	visibility: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	/* フェード速度 */
	transition: .8s;
	opacity: 0;
}
.flow__img p:first-child,
.flow__img p.active {
	visibility: visible;
	opacity: 1;
}

/*コンテンツのブロック*/
.flow_body{
  flex: 1;
  z-index: 1;
}
.flow_body > div{
  padding-top: 50vh;
}
.flow_body > div:last-child{
  padding-bottom: 50vh;
}
.flow_year{
  font-size:160px;
  color: #EFEFEF;
  line-height: 110%;
}
/* ボタン */
@media (any-hover: hover) {
  .flow__link:hover .flow__link-arrow {
    width: 100px;
  }

  .flow__link:hover .flow__link-circle {
    background: #444;
  }
}

.flow__link-text {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  font-size:20px;
  color: #444;
}

.flow__link-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% + 5px);
  transform: translate(0, -50%);
  left: calc(100% + 21.4px);
  width: 60px;
  height: 1px;
  background: #444;
  transition: width 0.5s ease;
}

.flow__link-arrow::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 1px;
  background: #444;
  transform: rotate(45deg);
  transform-origin: right center;
}

.flow__link-circle {
  position: absolute;
  top: calc(50% + 5px);
  transform: translate(0, -50%);
  left: calc(100% + 102px);
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #444;
  transition: background 0.5s ease;
}

@media screen and (max-width:768px){
  .flow{
    padding-top:200px;
  }
  
  .flow__inner {
    flex-direction: column;
    width: 100%;
    padding-inline: 20px;
  }
  .flow__img {
    width: 100%;
    top: 100px;
  }

  .flow__img p {
    height: 600px;
  }

  .flow_body > div{
    padding-top: 60vh;
  }

  .flow_year {
    font-size: 14vw;
  }
}

@media screen and (max-width:414px){
  .flow_body > div {
    padding-top: 30vh;
  }
}
/*===================*
        FOOTER
/*===================*/
footer{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-block: 100px;
}
footer p{
  color: #CCC;
}