@charset "utf-8";@charset "utf-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
	padding-top: 6%;
}

#Area {
	font-family: 'Yu Gothic Medium','游ゴシック Medium','Franklin Gothic Medium','Osaka','Roboto', sans-serif;
	/*font-family: 'Shippori Mincho B1', serif;*/
	text-align: center;
	color:#333333;
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}

/*スマホの時だけ改行*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

/* 余白*/
.spece {
 margin-bottom:3%;
}	

.spece2 {
    padding-top: 10%;
    text-align: center;
}	

.spece_bottom {
 margin-bottom:14%;
}



.backcolor {
	background: #f5f5f5;
}

.main {
	width: 80%;
	text-align: center;
    margin: 0 auto;
	border: 1.5px solid #2E5077;
	margin-top: 5%;
}

.main_in {
   width: 90%;
	text-align: center;
    margin: 0 auto;
	max-width: 1000px;
	padding-top: 8%;
}



/*===================================
mainコンテナー
===================================*/


.container_text img {
	width: 60%;
	margin: 0 auto;
	text-align: center;
}

.container {  display: grid;
  grid-template-columns: 32.5% 32.5% 32.5%;
  grid-template-rows: 100%;
  gap: 2% 1.2%;
  grid-auto-flow: row;
  grid-template-areas:
    "photo_1 photo_2 photo_3";
}

.photo_1 { grid-area: photo_1; }
.photo_2 { grid-area: photo_2; }
.photo_3 { grid-area: photo_3; }


/*===================================
TOPテキスト
===================================*/

.top {
	margin-bottom: 6%;
	color: #2E5077;
}

.text_title {
	line-height: 2.0;
	font-size: 15px;
	font-weight: 400;
	margin: 5% auto;
	font-display: swap;
}


/*===================================
テキスト
===================================*/

.text_main_1 {
	color: #2E5077;
	font-family:'Agdasima';
	/*font-family: "Poiret One", sans-serif;*/
  font-weight: 400;
  font-style: normal;
}

.detail_text {
	font-size: 15px;
	width: 50%;
	margin: 5% auto;
	text-align: left;
}

.text_1 {
	font-size: 12px;
}


/*===================================
詳細
===================================*/

.detail {  display: grid;
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
  /*grid-template-rows: 100%;*/
  gap: 2% 2%;
  grid-auto-flow: row;
  grid-template-areas:
    "detail_photo_1 detail_photo_2 detail_photo_3 detail_photo_4"
    "detail_photo_5 detail_photo_6 detail_photo_7 detail_photo_8";
	width: 88%;
    margin: 0 auto;
    text-align: center;
}

.detail_photo_1 { grid-area: detail_photo_1; }
.detail_photo_2 { grid-area: detail_photo_2; }
.detail_photo_3 { grid-area: detail_photo_3; }
.detail_photo_4 { grid-area: detail_photo_4; }
.detail_photo_5 { grid-area: detail_photo_5; }
.detail_photo_6 { grid-area: detail_photo_6; }
.detail_photo_7 { grid-area: detail_photo_7; }
.detail_photo_8 { grid-area: detail_photo_8; }

.detail img {
	display: block;
  object-fit: cover;
  border-radius: 8px;
}

/*===================================
CHECKボタン
===================================*/
/*=== ボタン共通デザイン ===================*/
.check-btn_01
{
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 32px;
  border: 1px solid #2E5077;
  background: transparent;
  color: #2E5077;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Helvetica', 'Arial', sans-serif;
  transition: all 0.3s ease;
  z-index: 2;
}
.check-btn_01:hover
{
  background: #2E5077;
  color: #fff;
}

/*=== 各エリアの基準位置設定 ===================*/
.photo_1
{
  position: relative;
}

/*===================================
スライド
===================================*/

/*=== 画像の表示エリア(2枚表示) ===========*/
.slide_2 {
  position   : relative;
  overflow   : hidden;
  aspect-ratio: 4 / 6;
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #e5e7e9;
}
 
 /*=== 画像の設定 (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: 4 / 6; 		
  width      : 100%;
  height     : 100%;
  margin     : auto; 
  background : #e5e7e9;
}
 
 /*=== 画像の設定 (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; }
}



/*===================================
区切り線
===================================*/

.border_1 {
	border-top: 1px solid #2E5077;
	/*border-top: 1px solid #d1cbc2;*/
	width: 80%;
	margin: 10% auto 9% auto;
}




/*===================================
ボタン系
===================================*/

/*黒細ライン＆ホバーグレー*/
a.btn_01 {
display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid #2E5077;
    box-sizing: border-box;
    width: 320px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #2E5077;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 4% auto 4% auto;
}

a.btn_01:hover {
  background: #2E5077;
  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 #2E5077;
  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: 7% auto 15%;
	width: 85%;
}

.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: 16px;
}

.other_details {
font-size: 14px;
text-align-last: left;	
}



/*===============================================
tablet
===============================================*/
@media (max-width: 768px) {
	#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }	
	
	
/*===================================
TOPテキスト
===================================*/
.text_title {
    line-height: 2.0;
    font-size: 15px;
    font-weight: 400;
    margin: 5% auto;
}	
	
	
	
/*===================================
ボタン系
===================================*/
a.btn_01 {
    width: 250px;
    height: 38px;
    padding: 0 6% 0 6%;
    font-size: 14px;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}
	
/*================================
その他の記事の記述
=================================*/
.new {
	max-width: 1000px;
	text-align: center;
	margin: 7% auto 12%;
	width: 85%;
}

.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;
	}
	
	
	
.main {
	width: 90%;
	text-align: center;
    margin: 0 auto;
	border: 1.5px solid #2E5077;
	margin-top: 7%;
}

.main_in {
   width: 90%;
	text-align: center;
    margin: 0 auto;
	max-width: 1000px;
}
	

.spece_btn {
 margin-bottom:32%;
}	
	
	
/*===================================
TOPテキスト
===================================*/
	
.top {
	margin-bottom: 12%;
	font-size: 14px;
}	
	
	
.text_title {
	line-height: 2.0;
	font-size: 14px;
	/*font-weight: 700;*/
	margin: 5% auto 10%;
/*width: 90%;*/
}	

.top span {
	font-size: 13px;
}	
	
	
	
/*===================================
テキスト
===================================*/
		
.detail_text {
    font-size: 14px;
    width: 75%;
    margin: 5% auto;
    text-align: center;
}	
	
	
/*===================================
mainコンテナー
===================================*/
.container { 
  display: block;
  grid-template-columns: 32.5% 32.5% 32.5%;
  grid-template-rows: 100%;
  gap: 2% 1.2%;
  grid-auto-flow: row;
  grid-template-areas:
    "photo_1 photo_2 photo_3";
}

.container_text img {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
	
.detail {
    width: 100%;
}	
	
.photo_1 {
    margin-bottom: 10%;
}
	
.photo_2 {
    margin-bottom: 10%;
}
	
.photo_3 {
    margin-bottom: 10%;
}	
	
	
/*===================================
詳細
===================================*/	
.detail {  display: grid;
  grid-template-columns: 48% 48%;
  gap: 2% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "detail_photo_1 detail_photo_2"
    "detail_photo_3 detail_photo_4"
    "detail_photo_5 detail_photo_6"
    "detail_photo_7 detail_photo_8";
}

.detail_photo_1 { grid-area: detail_photo_1; }

.detail_photo_2 { grid-area: detail_photo_2; }

.detail_photo_3 { grid-area: detail_photo_3; }

.detail_photo_4 { grid-area: detail_photo_4; }

.detail_photo_5 { grid-area: detail_photo_5; }

.detail_photo_6 { grid-area: detail_photo_6; }

.detail_photo_7 { grid-area: detail_photo_7; }

.detail_photo_8 { grid-area: detail_photo_8; }
	
	
	
/*===================================
CHECKボタン
===================================*/
/*=== ボタン共通デザイン ===================*/
.check-btn_01{
  position: absolute;
  right: 3%;
  bottom: 2%;
  width: 38%;
  height: 9%;
  font-size: 12px;
}
	
/*===================================
区切り線
===================================*/
	
.border_1 {
	width: 85%;
	margin: 20% auto 10% auto;
}	
		

	
/*===================================
ボタン系
===================================*/	
	
a.btn_01 {
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    transition-duration: 0.2s;
    margin: 14% auto 3% auto;	
	}

/*================================
その他の記事の記述
=================================*/


.new {
	max-width: 1000px;
	text-align: center;
	margin: 15% auto 30%;
	width: 85%;
}
	
.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;	
}
	
	
	
	
}	
	
