@charset "utf-8";@charset "utf-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 60%;
	height: auto;
	margin: 0% auto;
    text-align: center;
	padding-top: 4%;
}


#Area {
	font-family: 'Yu Gothic Medium','游ゴシック Medium','Franklin Gothic Medium','Osaka','Roboto', sans-serif;
	text-align: center;
	color:#333333;
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	max-width: 1600px;
}

.main {
	padding: 0 15%;
}

.backcolor {
	background-color: #dfdbd0;
	/*background-image:url("/photo/page/20250929/back_4.jpg")*/;
}

.spece_bottom {
	margin: 15% auto;
}

/* PCの時だけ改行 */
.br-pc {
  display: none;
}

/* PCだけ表示 */
@media screen and (min-width: 769px) {
  .br-pc {
    display: inline;
  }
}

/*スマホの時だけ改行*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}


/*===================================
区切り線
===================================*/

.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 10% auto 9% auto;
}

/*===================================
トップテキスト
===================================*/
.top_text{
	width: 70%;
	margin: 0 auto;
	text-align: center;
	font-family: "ivymode";
font-weight: 400;
font-style: normal;
}

.top_text＿01 {
	font-size: 30px;
}

.top_text＿02 {
	font-weight: 400;
	line-height: 2;
	margin-bottom: 10%;
	font-size: 15px;
}

/*===================================
CHECKボタン
===================================*/
/*=== ボタン共通デザイン ===================*/
.check-btn_01,.check-btn_02,.check-btn_03,
.check-btn_04,.check-btn_05,.check-btn_06,
.check-btn_07,.check-btn_08,.check-btn_09,
.check-btn_10,.check-btn_11,.check-btn_12,
.check-btn_13,.check-btn_14,.check-btn_15,
.check-btn_16,.check-btn_17,.check-btn_18,
.check-btn_19,.check-btn_20,.check-btn_21
{
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 32px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Helvetica', 'Arial', sans-serif;
  transition: all 0.3s ease;
  z-index: 2;
}
.check-btn_01:hover,.check-btn_02:hover,.check-btn_03:hover,
.check-btn_04:hover,.check-btn_05:hover,.check-btn_06:hover,
.check-btn_07:hover,.check-btn_08:hover,.check-btn_09:hover,
.check-btn_10:hover,.check-btn_11:hover,.check-btn_12:hover,
.check-btn_13:hover,.check-btn_14:hover,.check-btn_15:hover,
.check-btn_16:hover,.check-btn_17:hover,.check-btn_18:hover,
.check-btn_19:hover,.check-btn_20:hover,.check-btn_21:hover
{
  background: #000;
  color: #fff;
}

/*=== 各エリアの基準位置設定 ===================*/
.container_01_left,
.container_01_right,
.container_02_big,.container_02_up,.container_02_down,
.container_03_left,.container_03_center,.container_03_right,.container_04_big,.container_04_up,.container_04_down
{
  position: relative; /* ← これで子要素を右下に固定できる */
}



/* モバイル調整 
@media (max-width: 768px) {
  .check-btn {
    width: 70px;
    height: 26px;
    font-size: 11px;
    right: 6px;
    bottom: 6px;
  }
}*/


/*===================================
画像の構成
===================================*/

/*===画像横並び2つ===*/
.container_01 {  display: grid;
  grid-template-columns: 48.5% 48.5%;
  gap: 0% 3%;
  grid-auto-flow: row;
  grid-template-areas:
    "container_01_left container_01_right";
	margin: 3% auto;
}

.container_01_left { grid-area: container_01_left; }
.container_01_right { grid-area: container_01_right; }



/*=== 画像の表示エリア(2枚表示) ===========*/
.slide_2 {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 1 / 1;
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #fff;
}
 
 /*=== 画像の設定 (2枚表示)============== */
.slide_2 img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  left       : 100%;
  animation  : slideAnime2 6s ease infinite;
}
 
 /*=== アニメーションを段差で開始(3枚表示) ========= */
.slide_2 img:nth-of-type(1) { animation-delay: 0s }
.slide_2 img:nth-of-type(2) { animation-delay: 3s }
 
/*=== スライドのアニメーション(フェード付き) ================ */
@keyframes slideAnime2 {
 0%   { left: 100%;  opacity: 0; }
  8%   { left: 0;     opacity: 1; }
  48%  { left: 0;     opacity: 1; }
  53%  { left: -100%; opacity: 0; }
  100% { left: -100%; opacity: 0; }
}


/*=== 画像の表示エリア(3枚表示) ===========*/
.slide_3 {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 1 / 1; 		
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #fff;
}
 
 /*=== 画像の設定 (3枚表示)============== */
.slide_3 img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  left       : 100%;
  animation  : slideAnime3 12s ease infinite;
}
 
 /*=== アニメーションを段差で開始(3枚表示) ========= */
.slide_3 img:nth-of-type(1) { animation-delay: 0s }
.slide_3 img:nth-of-type(2) { animation-delay: 4s }
.slide_3 img:nth-of-type(3) { animation-delay: 8s }
 
/*=== スライドのアニメーション(フェード付き) ================ */
@keyframes slideAnime3 {
 0%   { left: 100%;  opacity: 0; }
  5%   { left: 0;     opacity: 1; }
  33%  { left: 0;     opacity: 1; }
  36%  { left: -100%; opacity: 0; }
  100% { left: -100%; opacity: 0; }
}



/*=== 画像の表示エリア(4枚表示) ===========*/
.slide_4 {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 1 / 1;
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #fff;
}
 
 /*=== 画像の設定 (4枚表示)============== */
.slide_4 img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  left       : 100%;
  animation  : slideAnime4 12s ease infinite;
}
 
 /*=== アニメーションを段差で開始(4枚表示) ========= */
.slide_4 img:nth-of-type(1) { animation-delay: 0s }
.slide_4 img:nth-of-type(2) { animation-delay: 3s }
.slide_4 img:nth-of-type(3) { animation-delay: 6s }
.slide_4 img:nth-of-type(4) { animation-delay: 9s }
 
/*=== スライドのアニメーション(フェード付き) ================ */
@keyframes slideAnime4 {
 0%   { left: 100%;  opacity: 0; }
  5%   { left: 0;     opacity: 1; }
  25%  { left: 0;     opacity: 1; }
  30%  { left: -100%; opacity: 0; }
  100% { left: -100%; opacity: 0; }
}



/*=== 画像の表示エリア(5枚表示) ===========*/
.slide_5 {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 1 / 1;
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #fff;
}
 
 /*=== 画像の設定 (4枚表示)============== */
.slide_5 img {
  display    : block;
  position   : absolute;
  width      : inherit;
  height     : inherit;
  left       : 100%;
  animation  : slideAnime5 15s ease infinite;
}
 
 /*=== アニメーションを段差で開始(4枚表示) ========= */
.slide_5 img:nth-of-type(1) { animation-delay: 0s }
.slide_5 img:nth-of-type(2) { animation-delay: 3s }
.slide_5 img:nth-of-type(3) { animation-delay: 6s }
.slide_5 img:nth-of-type(4) { animation-delay: 9s }
.slide_5 img:nth-of-type(5) { animation-delay: 12s }
 
/*=== スライドのアニメーション(フェード付き) ================ */
@keyframes slideAnime5 {
 0%   { left: 100%;  opacity: 0; }
  4%   { left: 0;     opacity: 1; }
  20%  { left: 0;     opacity: 1; }
  24%  { left: -100%; opacity: 0; }
  100% { left: -100%; opacity: 0; }
}



/*===画像大1つ上下2つ(1)===*/
.container_02 {  display: grid;
  grid-template-columns: 31.3% 31.3% 32.3%;
  /*grid-template-rows: 25% 25%;*/
  gap: 2% 2.5%;
  grid-auto-flow: row;
  grid-template-areas:
    "container_02_big container_02_big container_02_up"
    "container_02_big container_02_big container_02_down";
	margin: 3% auto;
}

.container_02_big { grid-area: container_02_big; }

.container_02_up { grid-area: container_02_up; }

.container_02_down { grid-area: container_02_down; }


/*===画像横並び3つ===*/

.container_03 {  display: grid;
  grid-template-columns: 32% 32% 32%;
  /*grid-template-rows: 25%;*/
  gap: 2% 2%;
  grid-auto-flow: row;
  grid-template-areas:
    "container_03_left container_03_center container_03_right";
	margin: 3% auto;

}

.container_03_left { grid-area: container_03_left; }

.container_03_center { grid-area: container_03_center; }

.container_03_right { grid-area: container_03_right; }


/*===画像大1つ上下2つ(2)===*/

.container_04 {  display: grid;
  grid-template-columns: 32.3% 31.3% 32.3%;
  /*grid-template-rows: 25% 25%;*/
  gap: 2% 2.5%;
  grid-auto-flow: row;
  grid-template-areas:
    "container_04_up container_04_big container_04_big"
    "container_04_down container_04_big container_04_big";
	margin: 3% auto;
}

.container_04_big { grid-area: container_04_big; }

.container_04_up { grid-area: container_04_up; }

.container_04_down { grid-area: container_04_down; }







/*===================================
ボタン系
===================================*/

/*黒細ライン＆ホバーグレー*/
a.btn_01 {
display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 4% auto 4% auto;
	  transition: all 0.3s ease;
  z-index: 2;
  font-family: 'Helvetica', 'Arial', sans-serif;
}

a.btn_01:hover {
 background: #000;
  color: #fff;
}

a.btn_01:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_01:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*黒細ライン＆ホバーも黒*/
a.btn_02 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 400px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
        margin: 2% auto 4% auto;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*================================
その他の記事の記述
=================================*/


.new {
	max-width: 1000px;
	text-align: center;
	margin: 0% auto;
}

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    /* grid-template-rows: 200px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }


.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 20px;
}

.other_details {
font-size: 15px;
text-align-last: left;	
}



/*===============================================
tablet
===============================================*/
@media (max-width: 768px) {
	#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }	
	
	
/*===================================
トップテキスト
===================================*/
.top_text{
	width: 80%;
	font-weight: 400;
	font-style: normal;
}

.top_text＿02 {
	font-weight: 400;
	line-height: 2;
	margin-bottom: 10%;
}
	
	
	
	
/*===================================
CHECKボタン
===================================*/
/*=== ボタン共通デザイン ===================*/
.check-btn_01,.check-btn_02,.check-btn_03,
.check-btn_04,.check-btn_05,.check-btn_06,
.check-btn_07,.check-btn_08,.check-btn_09,
.check-btn_10,.check-btn_11,.check-btn_12,
.check-btn_13,.check-btn_14,.check-btn_15,
.check-btn_16,.check-btn_17,.check-btn_18,
.check-btn_19,.check-btn_20,.check-btn_21
{
  width: 85px;
  height: 26px;
  font-size: 11px;
}
	
	
	
	
	
/*===================================
ボタン系
===================================*/
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;
	
	}
	
/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }

.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 14px;
}

	
}



/*===============================================
SMP
===============================================*/
@media (max-width: 426px) {

#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
	padding-left: none;
    padding-right: none;
	}
	
.main {
	padding: 0 5%;
}	
	
	
.image img {
	display: block;
	width: 95%;
	height: auto;
	margin: 0% auto;
    text-align: center;
	padding-top: 13%;
}	
	
.top_text {
	width: 93%;
	font-weight: 400;
	font-style: normal;
    }	
	
.top_text＿02 {
	font-weight: 400;
	line-height: 2;
	margin-bottom: 10%;
	margin-top: 5%;
	font-size: 14px;
}	
	
	
/*===================================
CHECKボタン
===================================*/
/*=== ボタン共通デザイン ===================*/
.check-btn_01,.check-btn_02,.check-btn_03,
.check-btn_04,.check-btn_05,.check-btn_06,
.check-btn_07,.check-btn_08,.check-btn_09,
.check-btn_10,.check-btn_11,.check-btn_12,
.check-btn_13,.check-btn_14,.check-btn_15,
.check-btn_16,.check-btn_17,.check-btn_18,
.check-btn_19,.check-btn_20,.check-btn_21
{
  width: 45%;
  height: 17%;
  font-size: 11px;
  right: 5px;
  bottom: 5px;

}
	
	
/*===================================
区切り線
===================================*/
	
.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 20% auto 10% auto;
}	
		

	
/*===================================
ボタン系
===================================*/	
	
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto 3% auto;	
	}

	
/*================================
その他の記事の記述
=================================*/
	
.other {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 50% 50%;
        gap: 3% 3%;
        grid-auto-flow: row;
        grid-template-areas:
        "other-1 other-2"
        "other-3 other-4";
        text-align: center;
        margin: 0 auto;
        max-width: 86%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }
	
.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 13px;
}
	
.other_details {
font-size: 12px;
text-align: left;	
}
	
	
	
	
}	
	
