@charset "utf-8";

@media only screen and (max-width:1280px) {}
@media only screen and (max-width:768px) {}
@media only screen and (max-width:480px) {}

#freeContentsArea {
  color: #000;
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

[id] {
scroll-margin-top: 3em; 
}

.row-reverse {
  flex-direction: row-reverse;
}

/* ------ caption ------ */
figcaption {
	position: absolute;
  bottom: 0;
  right: 0;
  padding:6px 10px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: right;
  text-shadow:0px 0px 1px #000, 
							0 0 5px #000,
							0 0 6px #000,
							0 0 7px #000,
							0 0 8px #000,
							0 0 9px #000,
							0 0 10px #000;
  z-index: 5;
}

figcaption.left_cap {
	position: absolute;
  bottom: 0;
  right: 52%;
  /* left: 160px; */
  padding:6px 10px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: right;
  text-shadow:0px 0px 1px #000, 
							0 0 5px #000,
							0 0 6px #000,
							0 0 7px #000,
							0 0 8px #000,
							0 0 9px #000,
							0 0 10px #000;
  z-index: 5;
}

.mvCap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: right;
  text-shadow:0px 0px 1px #000, 
							0 0 5px #000,
							0 0 6px #000,
							0 0 7px #000,
							0 0 8px #000,
							0 0 9px #000,
							0 0 10px #000;
  z-index: 5;
}

/* ------ inner ------ */
.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
@media only screen and (max-width:768px) {
	.inner {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}
}

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

 mainVisual

--------------------------------------------------------------- */
.mainVisual {
	display: table;
	position: relative;
}

.mainVisual .cell {
	position: absolute;
  width: 90%;
	top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mainVisual .title {
	font-size: 32px;
  margin-top: 30px;
  text-align: center;
	letter-spacing: 0.25em;
  color: #fff;
}
.mainVisual .en {
 position: relative;
	font-size: 24px;
	letter-spacing: 0.3em;
 color: #fff;
 padding-bottom: 16px;
 text-align: center;
}
.mainVisual .en::after {
 content: '';
 position: absolute;
 width: 30px;
 height: 1px;
 background-color: #fff;
 bottom: 0px;
 left: 50%;
 transform: translateX(-50%);
}
@media only screen and (max-width:768px) {
	.mainVisual {
    display: table;
    position: relative;
  }
  .mainVisual .cell {
    width: 100%;
    top: 30%;
  }
  .mainVisual .title {
    font-size: 24px;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
  .mainVisual .en {
    font-size: 22px;
    margin-top: 10px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}

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

----------------------------------------*/
.contents {
  padding: 50px 0 80px;
}

.section_title {
  font-size: clamp(2.4rem, -0.149rem + 3.315vw, 3rem);
  margin-top: 14px;
  letter-spacing: 0.15em;
  color: #173078;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .contents {
    padding: 40px 0 40px;
  }
  .section_title {
    font-size: 22px;
    margin-top: 14px;
  }
}

/* =======================================
top
==========================================*/
.top {
 padding-top: 80px;
}

.card_wrap {
 margin-top: 80px;
 display: flex;
 justify-content: space-between;
}

.card_item {
 width: 28.3%;
 position: relative;
}

.card_item:not(:last-of-type):after {
 content: '';
 position: absolute;
 top: 28%;
 right: -14%;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 19px 0 19px 14px;
 border-color: transparent transparent transparent #c4c4c4;
}

.card_title_en {
 font-size: 22px;
 letter-spacing: 0.1em;
 margin-top: 10px;
 color: #a2a2a2;
 text-align: center;
 font-style: italic;
}

.card_text {
 color: #173078;
 font-size: clamp(1.7rem, 0.074rem + 2.115vw, 2.4rem);
 text-align: center;
 margin-top: 16px;
}

.bottom_title {
 position: relative;
 padding-top: 120px;
 margin-top: 80px;
 font-family: 'EB Garamond', serif;
 color: #231815;
 font-size: 26px;
 letter-spacing: 0.3em;
 text-align: center;
}

.bottom_title::before {
 content: '';
 position: absolute;
 width: 1px;
 height: 100px;
 background-color: #000;
 top: 0;
 left: 50%;
 transform: translateX(-50%);

}

@media only screen and (max-width:768px) {
 .top {
  padding-top: 40px;
 }
 
 .card_wrap {
  margin-top: 40px;
  display: block;
 }
 
 .card_item {
  width: 100%;
 }

 .card_item + .card_item {
  margin-top: 40px;
 }
 
 .card_item:not(:last-of-type):after {
  content: none;
 }
 
 .card_title_en {
  margin-top: 6px;
 }
 
 .card_text {
  font-size: 22px;
  margin-top: 6px;
  line-height: 1.3;
 }
 
 .bottom_title {
  padding-top: 80px;
  margin-top: 50px;
  font-size: 26px;
 }
 
 .bottom_title::before {
  height: 60px;
 }
}

/* ======================================
type_area
========================================*/
.type_area {
 margin-top: 60px;
 padding: clamp(2.4rem, -1.317rem + 4.834vw, 4rem) 0;
 color: #fff;
 background-color: #173078;
}

.type_wrap {
 position: relative;
 display: flex;
 justify-content: center;
 font-family: 'EB Garamond', serif;
 align-items: flex-end;
 padding-bottom: 30px;
 margin-bottom: 24px;
 border-bottom: 1px solid #fff;
}

.type_wrap::before {
 content: '';
 position: absolute;
 width: 1px;
 height: 60%;
 top: 50%;
 left: 50%;
 transform: translate(-50%,-50%);
 background-color: #fff;
}

.type {
 width: 30%;
 text-align: right;
 font-size: 46px;
 margin-right: 30px;
 letter-spacing: 0.05em;
 line-height: 1;
}

.type_l {
 font-size: 80px;
 letter-spacing: 0.05em;
}

.ldk {
 width: 30%;
 font-size: 26px;
 margin-left: 30px;
 line-height: 1;
}

.ldk_l {
 font-size: 44px;
}

.menseki {
 text-align: center;
 font-size: clamp(1.8rem, 0.871rem + 1.208vw, 2.2rem);
 letter-spacing: 0.08em;
 line-height: 1;
}

.menseki.mt {
 margin-top: 26px;
}

.num {
 font-size: 30px;
}

.num_l {
 font-size: 42px;
}

.num_m {
 font-size: 20px;
}

@media only screen and (max-width:768px) {
 .type_area {
  margin-top: 30px;
  padding: 20px 0;
 }
 
 .type_wrap {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
 }
 
 .type_wrap::before {
  content: none;
 }
 
 .type {
  width: 100%;
  text-align: center;
  font-size: 36px;
  margin-right: 0;
 }
 
 .type_l {
  font-size: 60px;
 }
 
 .ldk {
  width: 100%;
  font-size: 20px;
  margin-left: 0;
  margin-top: 20px;
  text-align: center;
 }
 
 .ldk_l {
  font-size: 36px;
 }
 
 .menseki {
  text-align: center;
  font-size: 16px;
 }
 
 .menseki.mt {
  margin-top: 20px;
  line-height: 1.5;
 }
 
 .num {
  font-size: 28px;
 }
 
 .num_l {
  font-size: 38px;
 }
 
 .num_m {
  font-size: 20px;
 }
}

/* ===================================
slide_area
======================================*/
.slide_area {

}

.slide_area .inner {
 max-width: 900px;
}

.slide-item {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.slide-item_body {
 width: 47%;
}

.slide-item_title_en {
 font-size: 20px;
 letter-spacing: 0.1em;
 margin-top: 10px;
 color: #a2a2a2;
 text-align: center;
 font-style: italic;
}

.slide-item_title {
 color: #173078;
 font-size: clamp(1.8rem, 0.871rem + 1.208vw, 2.2rem);
 text-align: center;
 margin-top: 16px;
}

.slide-item_text {
 font-size: clamp(1.3rem, 0.603rem + 0.906vw, 1.6rem);
 line-height: 1.5;
 margin-top: 16px;
 text-align: center;
}

.slide-item_img {
 width: 80%;
 margin: 10px auto 0;
}

.slide-item_cap {
 font-size: 12px;
 text-align: right;
}

.slide-item_madori {
 width: 46%;
}

@media only screen and (max-width:768px) {
 .slide_area {

 }
 
 .slide_area .inner {
  max-width: 900px;
 }
 
 .slide-item {
  flex-direction: column;
  margin-top: 20px;
 }
 
 .slide-item_body {
  width: 100%;
  display: contents;
 }
 
 .slide-item_title_en {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 10px;
  color: #a2a2a2;
  text-align: center;
  font-style: italic;
 }
 
 .slide-item_title {
  order: 2;
  color: #173078;
  font-size: 14px;
  text-align: center;
  margin-top: 0;
 }
 
 .slide-item_text {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 30px;
  text-align: center;
 }
 
 .sp_flex {
  order: 3;
  display: flex;
  column-gap: 10px;
 }

 .slide-item_img {
  width: 100%;
  margin: 10px auto 0;
 }
 
 .slide-item_cap {
  font-size: 10px;
  text-align: right;
 }
 
 .slide-item_madori {
  order: 1;
   margin: 6px auto 0;
   width: 54%;
 }
 .sp_order_0 {
  order: 0;
 }
 .sp_order_4 {
  order: 4;
 }
}

/* ===================================
bottom
======================================*/
.bottom {
 padding-top: 80px;
 padding-bottom: 80px;
 background-color: #E6E6E6;
}

.bottom_text {
 margin-top: 40px;
 font-size: 18px;
 text-align: center;
 line-height: 2;
 letter-spacing: 0.1em;
}

.bottom_card_wrap {
 margin-top: 80px;
 display: grid;
 grid-template-columns: repeat(3,1fr);
 column-gap: 46px;
}

.bottom_card_title {
 color: #173078;
 font-size: clamp(1.7rem, 0.074rem + 2.115vw, 2.4rem);
 text-align: center;
 margin-top: 16px;
}

.bottom_card_text {
 font-size: 14px;
 margin-top: 16px;
}

@media only screen and (max-width:768px) {
 .bottom {
  padding: 40px 0;
 }
 
 .bottom_text {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
 }
 
 .bottom_card_wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  column-gap: 46px;
 }

 .bottom_card_item + .bottom_card_item {
  margin-top: 30px;
 }
 
 .bottom_card_title {
  font-size: 22px;
  text-align: center;
  margin-top: 12px;
 }
 
 .bottom_card_text {
  font-size: 14px;
  margin-top: 10px;
 }
}




/* --------------------------------------
slick
----------------------------------------*/
.slide-items {
  width: 100%;
  height: 100%;
}
.slide-items img {
  width: 100%;
  object-fit: cover;
}

.dots-2 {
 margin-top: 40px;
}

.dots-2 .slick-dots {
  text-align: center;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}

.slick-prev{
 position: absolute;
 top: 50%;
 left:-30px!important;
}

.slide-items .slide-arrow {
 bottom: 0;
 cursor: pointer;
 margin: auto;
 position: absolute;
 top: -100px;
 width: 36px;
 z-index: 999;
}
.prev-arrow {
 left: -50px;
}
.next-arrow {
 right: -50px;
}

.button-tabs {
 max-width: 1100px;
 padding: 0 20px;
 margin: 80px auto 0;
 display: grid;
 grid-template-columns: repeat(5,1fr);
 column-gap: 20px;
}

.tab {
 padding: 10px 4px;
 border: 1px solid #333;
 font-size: clamp(1.2rem, -0.499rem + 2.21vw, 1.6rem);
 text-align: center;
 cursor: pointer;
 transition: all .4s;
}

.tab .en {
 font-style: italic;
}

.tab.active {
 background-color: #0a467d;
 color: #fff;
}

.tab:hover {
 background-color: #0a467d;
 color: #fff;
}

@media only screen and (max-width:1000px) {
 .prev-arrow {
  left: -2%;
 }
 .next-arrow {
  right: -2%;
 }
}

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


 .dots-2 {
  position: relative;
  z-index: 99;
  margin-top: 10px;
 }
 .slide-items .slide-arrow {
  width: 24px;
  height: 24px;
  top: -390px;
 }
 .prev-arrow {
  left: -10px;
 }
 .next-arrow {
  right: -10px;
 }
}