html{
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 !important;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
}
.body_inner{
  overflow: hidden;
}
main{
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .main{
    padding-top: 75px;
  }
}
h1,h2,h3,h4,p{
  margin: 0;
}
.img100 img{
  width: 100%;
}
.font_ro{
  font-family: "Roboto";
}
h2{
  color: #1E3042;
  font-family: "Roboto";
}
h3{
  color: #1E3042;
  font-family: "Roboto";
}
h4{
  color: #1E3042;
  font-weight: 300;
}
/* 簡易リセットCSS */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.link_blank{

}
.link_blank::after{
  margin-left: 25px;
  content: url(../img/blank.png);
}
.contact_wrap .link_blank::after{
  margin-left: 5px;
  content: url(../img/blank.png);
}
footer .link_blank::after{
  margin-left: 5px;
  content: url(../img/blank.png);
}
.pagetop{
  position: fixed;
  bottom: 30px; right: 30px;
  opacity: 0;
  transition: 1s;
  cursor : pointer;
  z-index: 10;
}
.pagetop img:hover{
  transform:scale(1.4,1.4);
  transition:0.75s all;
}
@media screen and (min-width: 768px) {
  .wrap01_pc{
    max-width: 1100px;
    margin: 0 auto;
  }
  .wrap02_pc{
    max-width: 1040px;
    margin: 0 auto;
  }
  .wrap03_pc{
    max-width: 980px;
    margin: 0 auto;
  }
  .wrap04_pc{
    max-width: 1080px;
    margin: 0 auto;
  }
  h2{
    font-size: 120px;
    margin-top: 80px;
  }
  h3{
    font-size: 40px;
  }
  .h3_under{
    padding-bottom: 10px;
    position: relative;
  }
  .h3_under::after{
    content: '';
    width: 50px;
    height: 2px;
    display: inline-block;
    background-color: #D09966;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 25px)
  }
  h4{
    font-size: 36px;
  }
  .section{
    padding: 80px 0;
  }
  .font_10_pc{
    font-size: 10px !important;
  }
  .font_14_pc{
    font-size: 14px !important;
  }
  .font_20_pc{
    font-size: 20px !important;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  h2{
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .font_10_sp{
    font-size: 10px !important;
  }
  .font_12_sp{
    font-size: 12px !important;
  }
  .font_14_sp{
    font-size: 14px !important;
  }
  .font_20_sp{
    font-size: 20px !important;
  }
  h2{
    font-size: 50px;
  }
  h3{
    font-size: 26px;
  }
  .h3_under{
    padding-bottom: 10px;
    position: relative;
  }
  .h3_under::after{
    content: '';
    width: 50px;
    height: 2px;
    display: inline-block;
    background-color: #D09966;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 25px)
  }
  h4{
    font-size: 26px;
  }
  .wrap01_sp{
    padding: 15px;
  }
  .wrap02_sp{
    padding: 0 35px;
  }
}

/* header */
.header {
  position: fixed;  /* 位置を固定する */
  top: 0;  /* 固定する位置を指定 */
  left: 0;  /* 固定する位置を指定 */
  width: 100%;  /* ヘッダーの幅 */
  background: #fff;  /* 背景色 */
  z-index: 3;
  height: 75px;
  justify-content: space-between;
  align-items: center;
}
.header_info {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header_link{
  font-family: "Roboto";
  list-style: none;
}
.header_lang {
  position: relative;
}
.header .header_lang a {
  opacity: 0.5;
  transition: .5s;
}
.header .header_lang a:hover {
  opacity: 1;
}
.header .header_lang a.is-active {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  header{
    padding-left: 60px;
    padding-right: 60px;
  }
  .header_inner{
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_link{
    display: flex;
    margin-left: 20px;
  }
  .header_link a{ 
    font-size: 16px;
    color: #1E3041;
    text-decoration: none;
    position: relative;
  }
  .header_link a:nth-child(n+2) {
    margin-left: 30px;
  }
  .header_link a::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: #D09966;
    position: absolute;
    bottom: -5px;
    left: 0%;
    transform: scale(0, 1);
    transition: .3s;
  }
  .header_link a:hover {
    color: #D09966;
  }
  
  .header_link a:hover::after {
    transform: scale(1, 1);
  }
  .header_lang ul {
    display: flex;
    align-items: center;
  }
  .header_lang li {
    padding: 0 14px;
    border-right: 1px solid #1E3041;
    list-style: none;
  }
  .header_lang li:last-child {
    border-right: none;
  }
  .header_lang ul li a {
    color: #1E3041;
    font-size: 16px;
    text-decoration: none;
  }
}
@media (max-width: 1100px) {
  .header_info {
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  header{
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_logo{
    width: 150px;
    height: auto;
  }
  .header_link{
    margin-left: 15px;
  }
  .header_link a{ 
    font-size: 15px;
  }
  .header_link a:nth-child(n+2) {
    margin-left: 15px;
  }
}

/* /header */

/* kv_area */
.kv_area{
  position: relative;
}
.kv_area img{
  width: 100%;
}
.kv_text01{
  color: #BADEF3;
}
.kv_text02{
  color: #D09967;
  font-weight: 400;
}
.kv_text03{
  color: #fff;
  letter-spacing: 4.7px;
}

.start {
	background: #1E3042;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start .startarea {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	/* width: 280px; */
  /* height: 100%; */
}
.start_logo{
  display: flex;
}

@media screen and (min-width: 768px) {
  .kv_area img{
    height: 100vh -75px;
  }
  .start_text01{
    color: #BADEF3;
    font-size: 24px;
    overflow: hidden;
  }
  .start_text01 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text02{
    color: #D09967;
    font-size: 124px;
    font-weight: 400;
    margin-top: 70px;
    overflow: hidden;
  }
  .start_text02 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text03{
    color: #BADEF3;
    font-size: 24px;
    font-weight: 400;
    margin-top: 70px;
    overflow: hidden;
  }
  .start_text03 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text04{
    color: #D09967;
    font-size: 124px;
    font-weight: 400;
    margin-top: 70px;
    overflow: hidden;
  }
  .start_text04 span{
    display: block;
    margin-top: -200%;
    transition: 1s;
  }
  .active span {
    margin-left: 0;
  }
  .active02 span {
    margin-top: 0;
  }
  .kv_area{
  }
  /* .kv_area_img02{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  } */
  .kv_text_area{
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .kv_text01{
    color: #BADEF3;
    font-size: 16px;
  }
  .kv_text02{
    color: #D09967;
    font-size: 76px;
    font-weight: 400;
  }
  .kv_text03{
    color: #fff;
    font-size: 20px;
    letter-spacing: 4.7px;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .kv_text_area{
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .start_text01{
    color: #BADEF3;
    font-size: 24px;
    overflow: hidden;
  }
  .start_text01 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text02{
    color: #D09967;
    font-size: 48px;
    font-weight: 400;
    margin-top: 30px;
    overflow: hidden;
  }
  .start_text02 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text02 img{
    max-height: 40px;
  }
  .start_text04 img{
    max-height: 40px;
    
  }
  .start_text03{
    color: #BADEF3;
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    overflow: hidden;
  }
  .start_text03 span{
    display: block;
    margin-left: -100%;
    transition: 1s;
  }
  .start_text04{
    color: #D09967;
    font-size: 48px;
    font-weight: 400;
    margin-top: 30px;
    overflow: hidden;
  }
  .start_text04 span{
    display: block;
    margin-top: -200%;
    transition: 1s;
  }
  .active span {
    margin-left: 0;
  }
  .active02 span {
    margin-top: 0;
  }
  .kv_area{
    width: 100%;
  }
  .kv_text_area{
    position: absolute;
    right: 15%;
    top: 25%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .kv_text02 img{
    height: 38px;
    width: auto;
  }
}
/* /kv_area */


/* about */
#about{
  position: relative;
}
.about_bg{
  opacity: 0.1;
}
@media screen and (min-width: 768px) {
  #about{
  }
  .about_area{
    display: flex;
    justify-content: space-between; 
    margin-top: -70px;
    margin-bottom: 70px;
  }
  .about_text_img01{
    z-index: -1;
    width: 60%;
  }
  .about_text_img01 img{
    width: 100%;
  }
  .about_text_area01{
    max-width: 400px;
    width: 40%;
    margin-left: 80px;
    margin-right: 135px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 28px;
  }
  .about_bg{
    position: absolute;
    right: -105px;
    top: 200px;
    overflow-x: hidden;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .about_area{
    margin-top: -50px;
  }
}
@media screen and (max-width: 768px) {
  #about{
    /* overflow-x: hidden;  */
  }
  #about{
    padding-top: 70px;
  }
  #about h2{
    font-size: 55px;
  }
  .about_text_img01 img{
    width: 80%;
  }
  .about_bg{
    position: absolute;
    right: -75px;
    top: 470px;
    overflow-x: hidden;
  }
}
/* /about */

/* concept */
.concept_text02{
  line-height: 40px;
}
.concept_area01_iconarea{
  display: flex;
}
#how{
  background-color: #E3F1FA;
}
.concept_text01{
  /* font-weight: 600; */
}
.concept_area01 h4{
  font-family: sans-serif;
  font-weight: 500;
}
.concept_span{
  font-family: sans-serif;
}

.concept_area01_icon{
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #1E3042;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how_link a {
  font-size: 20px;
  color: #1E3041;
  text-decoration: none;
  position: relative;
}
.how_link a:hover {
  color: #D09966;
}
.how_link a::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #D09966;
  position: absolute;
  bottom: -5px;
  left: 0%;
  transform: scale(0, 1);
  transition: .3s;
}
.how_link a:hover::before {
  transform: scale(1, 1);
}
.how_link a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px #1E3041;
  border-right: solid 1px #1E3041;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.how_link a:hover::after {
  border-bottom: solid 1px #D09966;
  border-right: solid 1px #D09966;
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  right: -20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #concept{
    margin-top: 35px;
    padding-top: 150px;
  }
  #concept h2{
    margin-top: -150px;
  }
  .concept_area01{
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  .concept_bg{
    background-image: url('../img/concept-bg.png') !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-left: 20px;
    padding-right: 20px;
  }
  .concept_text01{
    font-size: 20px;
    line-height: 30px;
  }


  .concept_area01_iconarea{
    display: flex;
  }
  .concept_area01_iconarea .concept_area01_icon:nth-child(n+2) {
    margin-left: 30px;
  }

  .concept_area02{
    display: flex;
    justify-content: center;
  }
  .concept_img04{
    min-width: 240px;
    margin-left: 70px;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .concept_bg{
    padding-left: 30px;
    padding-right: 30px;
  }
  .concept_img04{
    min-width: 220px;
    margin-left: 20px;
  }

  .concept_area01_icon{
    width: 110px;
    height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .concept_bg{
    background-image: url('../img/concept-bg-sp.png') !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .concept_text01{
    line-height: 30px;
    font-size: 18px;
  }
  .concept_area01_iconarea{
    flex-wrap: wrap; 
    justify-content: space-between;
  }
  .concept_area01_icon{
    margin: 30px 10px 0 10px;
  }
  .concept_area01_icon img{
    max-width: 135px;
  }
  .concept_area01_icon p{
    display: inline-block;
  }
  .concept_area02{
    display: flex;
    flex-wrap: wrap;
  }
  .concept_area02 div{
    width: 50%;
    padding: 30px 10px 0 10px;
  }

  #how{
    padding: 60px 0;
  }
  #how p{
    display: inline-block;
  }
  #create{
    position: relative;
  }
}
/* /concept */

/* UNIT */
#unit{
  position: relative;
}
.unit_area{
  background-color: #F2F2F2;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .unit_area{
    padding: 80px 110px;
  }
  .unit_content{
    display: flex;
    justify-content: center;
  }
  .unit_item img{
    max-width: 136px;
  }
  .unit_content .unit_item:nth-child(n+2) {
    margin-left: 40px;
  }
  .bg-effect01{
    position: absolute;
    bottom: -250px;
    left: -100px;
    max-width: 500px;
    z-index: -3;
  }
  /* .bg-effect01{
    position: absolute;
    bottom: -250px;
    left: -150px;
    max-width: 500px;
    z-index: -3;
  } */
}
@media (min-width: 768px) and (max-width: 960px) {
  .unit_area{
    margin: 0 30px;
  }
  .unit_item img{
    max-width: 110px;
  }
}
@media screen and (max-width: 768px) {
  #unit{
    padding: 30px 0;
  }
  .unit_item img{
    max-width: 136px;
  }
  .unit_content{
    display: flex;
    flex-wrap: wrap;
  }
  .unit_content div{
    width: 50%;
    padding: 10px;
    display: block;
    text-align: center;
  }
  .unit_area p{
    display: inline-block;
    text-align: center;
  }
}
/* /UNIT */

/* facilities */
#facilities{
  position: relative;
}
.facilities_table{
  text-align: left;
}
.facilities_table{
  border-top: 1px solid #848484;
}
.facilities_col{
  border-bottom: 1px solid #848484;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 20px;
}
.facilities_h2{
  position: relative;
  pointer-events: none;
  z-index: 2;
}
#googlemap{
  position: relative;
  width: 683px;
  height: 647px;
}
@media screen and (min-width: 1600px) {
  #googlemap{
    position: relative;
    width: 1000px;
    height: 647px;
  }
}
#googlemap iframe {
  border-radius: 0 50px 50px 0 ;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .facilities_area{
    display: flex;
    justify-content: space-between;
    margin-top: -60px;
  }
  .facilities_table{
    max-width: 480px;
    font-size: 14px;
  }
  .facilities_left{
    width: 35%;
  }
  .facilities_right{
    width: 65%;
  }
  .facilities_inner{
    margin-right: 15%;
    margin-left: 20px;
    margin-top: 110px;
  }
  .bg-effect02{
    position: absolute;
    top: -200px;
    right: -150px;
    max-width: 500px;
    z-index: -3;
  }
  .bg-effect03{
    position: absolute;
    left: -150px;
    top: 730px;
    max-width: 450px;
    z-index: -3;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .facilities_inner{
    margin-right: 7%;
  }
}
@media screen and (max-width: 768px) {
  #facilities{
    padding-top: 70px;
  }
  .facilities_left{
    width: 50%;
  }
  .facilities_right{
    width: 50%;
  }
  
  #googlemap{
    position: relative;
    /* width: 100%; */
    width: 361px;
    height: 352px;
  }
}
/* /facilities */


/* ouratelier */
.ouratelier_icon{
  position: relative;
}
.ouratelier_search{
  position: absolute;
}
.ouratelier_icon_01{
  background-image: url(../img/ouratelier-img01.png);
  transition: 0.7s ;
}
.ouratelier_icon_01:hover{
  background-image: url(../img/ouratelier-img01-hover.png);
}
.ouratelier_icon_02{
  background-image: url(../img/ouratelier-img02.png);
  transition: 0.7s ;
}
.ouratelier_icon_02:hover{
  background-image: url(../img/ouratelier-img02-hover.png);
}
.ouratelier_icon_03{
  background-image: url(../img/ouratelier-img03.png);
  transition: 0.7s ;
}
.ouratelier_icon_03:hover{
  background-image: url(../img/ouratelier-img03-hover.png);
}
.ouratelier_icon{
  width: 136px;
  height: 136px;
}
.ouratelier_area button{
  width: 136px;
  height: 136px;
}
@media screen and (min-width: 768px) {
  .ouratelier_area{
    display: flex;
    justify-content: center;
  }
  .ouratelier_area .ouratelier_item:nth-child(n+2) {
    margin-left: 40px;
  }
  .ouratelier_search{
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #our{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ouratelier_area{
    display: grid;
    grid-template-columns: repeat(auto-fit, 136px);
    grid-gap: 20px;
    justify-content: center;
  }
  .ouratelier_item{
    /* width: 50%; */
    width: 136px;
  }
  .ouratelier_search{
    top: 0;
    right: 0px;
  }
}
/* /ouratelier */

/* floor */
#floor{
  position: relative;
}
@media screen and (min-width: 768px) {
  #tab01,#tab02{
    text-align: center;
  }
  .floor_img01,.floor_img02,.floor_img03,.floor_img04{
    max-width: 800px;
  }
  .bg-effect04  {
    position: absolute;
    right: -40px;
    bottom: -150px;
    max-width: 370px;
    z-index: -3;
  }
  .floor_img05 img,.floor_img06 img{
    max-width: 250px;
    margin-left: 60px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  #tab01,#tab02{
    margin: 0 30px;
  }
  .floor_img01,.floor_img02,.floor_img03,.floor_img04{
    width: 100%;
  }
  .floor_img05 img,.floor_img06 img{
    max-width: 250px;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  #tab01,#tab02{
    text-align: center;
  }
  .floor_img01,.floor_img02,.floor_img03,.floor_img04{
    width: 100%;
  }
  .floor_img05 img,.floor_img06 img{
    max-width: 110px;
  }
}
/* /floor */


/* service */
.service_area{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .service_area{
    padding: 0 10px;
  }
  .service_item{
    margin: 0 10px;
    margin-top: 40px;
  }
  .service_item_img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #1E3042;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service_item_img img{
    transform: scale(0.5);
  }
}
@media screen and (max-width: 768px) {
  .service_item_img{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #1E3042;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service_item_img img{
    transform: scale(0.5);
  }
  .service_item{
    margin-top: 30px;
  }
  .service_item p{
    max-width: 85px;
    font-size: 12px;
  }
}
/* /service */


/* news */
#news{
  position: relative;
}

.news_h2_wrap {
  position: relative;
  z-index: 1;
}
.news_inner{
  position: relative;
  max-width: 800px;
  width: 100%;
}
.news_content{
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #848484;
}
.news_content a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color:inherit;
}
.news_content a:hover{
  text-decoration: underline;
}
.news_time{
  display: flex;
  align-items: center;
}
.news_category{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D09966;
}
.news_content:last-child  {
  border-bottom: 1px solid #848484;
}
.news_btns {
  text-align: center;
  margin-top: 40px;
}
.news_area .news_btns {
  max-width: 800px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  min-height: 65px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #1E3042;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: .3s;
}
.btn:after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: .3s;
}
.btn:hover {
  background-color: #D09966;
  color: #1E3042;
}
.btn:hover:after {
  border-color: transparent transparent transparent #1E3042;
}
@media screen and (min-width: 768px) {
  #news{
    opacity: 0.999999;
  }
  .news_area{
    max-width: 1100px;
    margin-top: -120px;
    padding: 130px 0 80px 100px;
    border-radius: 50px;
    background-color: #F2F2F2;
    position: relative;
    right: -200px;
  }
  .news_time{
    min-width: 120px;
  }
  .news_category{
    width: 70px !important;
    height: 20px;
  }
  .news_text{
    max-width: 575px;
  }
  .news_text::after{
    content: url(../img/pdf-icon.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.9);
  }
  .bg-effect05{
    position: absolute;
    right: -50px;
    top: -150px;
    max-width: 210px;
    z-index: -3;
  }
  .bg-effect06{
    position: absolute;
    left: 0;
    bottom: 80px;
    max-width: 310px;
    z-index: -3;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  #news{
    padding-left: 30px;
  }
  .news_area{
    width: 100%;
    margin: 0 30px;
    position: static;
  }
  .news_inner{
    padding-left: 60px;
  }
  .news_content{
    /* width: 680px; */
  }
}
@media screen and (max-width: 768px) {
  .news_area{
    border-radius: 50px 0 0 50px;
    background-color: #F2F2F2;
    height: auto;
    padding: 70px 35px;
  }
  .news_content{
    display: block;
  }
  .news_content_sp{
    display: flex;
  }
  .news_category{
    width: 70px;
    height: 20px;
  }
  .news_text::after{
    /* margin-left: 50px; */
    content: url(../img/pdf-icon.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.9);
  }
  .news_position{
    margin-top: -65px;
  }
}
/* /news */

/* consortium */
#consortium{
  /* background-color: #F2F2F2; */
  position: relative;
}
@media screen and (min-width: 768px) {
  #consortium{
    margin-top: 190px;
  }
  .consortium_inner{
    padding-top: 105px;
    padding-bottom: 80px;
    background-color: #F2F2F2;
  }
  #consortium h2{
    /* position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: 0; */
    margin-top: -70px;
    margin-bottom: -70px;
    background-color: none;
  }
  .consortium_area{
    margin: 0 auto;
    list-style: none;
    max-width: 1020px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }
  .consortium_area li{
    /* margin: 0 24px; */
  }
}
@media screen and (max-width: 768px) {
  #consortium{
    background-color: #F2F2F2;
  }
  #consortium h2{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: 0;
  }
  #consortium{
    margin-top: 90px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .consortium_area{
    margin: 0 auto;
    list-style: none;
    max-width: 332px;

    display: flex;
    flex-wrap: wrap;
    /* justify-content:space-between; */
    gap: 16px;
  }
  .consortium_area img{
    max-width: 158px;
    height: auto;
  }
}
/* /consortium */

/* contact */
#contact{
  background-color: #F2F2F2;
  color: #fff;
}
#contact h2{
  z-index: 2;
  color: #fff !important;
}
#contact .send-btn{
  font-size: 16px;
  color: #1E3042;
  max-width: 400px;
  width: 100%;
  height: 65px;
  background-color: #D09966;
  border: none;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  cursor : pointer;
  transition:0.2s all;
}
.send-btn:after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #1E3042;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.send-btn:hover{
  transition:0.75s all;
  background-color: #fff;
}
#spId1,#spId2,#spId3,#spId4,#spId5,#spId6,#spId7,#spId8,#spId9,#spId10{
  color: red;
}
.submit_btn{
  position: relative !important;
}
#contact .send-btn:hover{
  background-color: #fff;
}
#contact  .contact_txt{
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
}
#contact .contact_txtarea textarea{
  resize:vertical;
  height: auto;
}
#contact .contact_message{
  padding-left: 10px;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
}
#contact_type{
  color: gray;
}
.contact_type_txt{
  color: black;
}
.contact_br{
  display: none;
}
.contact_policy{
  display: flex;
}
@media screen and (min-width: 768px) {
  #contact .contact_bg{
    background-image: url('../img/contact-bg.png') !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  #contact .inner{
    width: 800px;
    margin: 0 auto;
  }
  #contact .contact_txtarea{
    display: flex;
    align-items: center;
  }
  #contact .contact_wrap{
    padding: 20px 0;
    border-top: 1px solid #848484;
  }
  
  #contact .contact_wrap:last-child{
    border-bottom: 1px solid #848484;
  }
  #contact .contact_txt{
    width: 540px;
    height: 40px;
    padding-left: 10px;
  }
  #contact .form-label{
    display: inline-block;
    width: 280px;
    position: relative;
  }
  #contact .red{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
    background-color: #BC2323;
    padding: 5px 10px;
    /* margin-left: auto;
    margin-right: 0; */
  }
  #contact .gray{
    background-color: #797979 !important;
  }
  #contact .contact_no{
    margin-left: 280px;
  }
  #spId1,#spId2,#spId3,#spId4,#spId5,#spId6,#spId7,#spId8,#spId9,#spId10{
    margin-left: 280px;
  }
  #submit{
    position: relative;
  }
  #contact .contact-result{
    padding-bottom: 110px;
    font-size: 24px;
  }
  #contact .contact_txtarea .contact_message{
    width: 540px !important;
  }
}
@media (min-width: 768px) and (max-width: 960px) {

  #contact .inner{
    width: 720px;
    margin: 0 auto;
  }
  #contact .contact_no {
    margin-left: 235px;
  }
  .contact_br{
    display: block;
  }
  .contact_policy{
    width: 540px;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_bg{
    background-image: url('../img/contact-bg-sp.png') !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  #contact .contact_bg{
    padding-top: 80px;
  }

  
  #contact .inner{
    width: 100%;
    padding: 0 35px;
    margin: 0 auto;
  }
  #contact .contact_txtarea{
    display: block;
    align-items: center;
  }
  #contact .contact_wrap{
    padding: 20px 0;
    border-top: 1px solid #848484;
  }
  
  #contact .contact_wrap:last-child{
    border-bottom: 1px solid #848484;
  }
  #contact  .contact_txt{
    width: 100%;
    height: 40px;
    padding-left: 10px;
  }
  #contact  .contact_txt::placeholder{
    font-size: 12px;
  }
  #contact .form-label{
    display: inline-block;
    width: 100%;
    position: relative;
  }
  #contact .red{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
    background-color: #BC2323;
    padding: 5px 10px;
    /* margin-left: auto;
    margin-right: 0; */
  }
  #contact .gray{
    background-color: #797979 !important;
  }
  #contact .contact_no{
    margin-top: 10px;
  }
  #spId1,#spId2,#spId3,#spId4,#spId5,#spId6,#spId7,#spId8,#spId9,#spId10{
    margin-top: 10px;
  }
  .submit_btn{
    position: relative !important;
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
  }
  #contact .contact-result{
    padding-bottom: 110px;
    font-size: 24px;

  }
  #contact .contact_message{
    width: 100%;
    padding-left: 10px;
  }
  #contact .contact_message::placeholder{
    font-size: 12px;
  }
}
#contact .send-btn-non{
  background-color: gray;
  pointer-events: none;
}
#contact .send-btn-yes{
  background-color: #D09966;
}
/* /contact */


/* company */
#company{
  background-color: #3D5369;
  color: #fff;
}
#company h3{
  color: #fff;
}
.company_area a{
  color: #fff;
  text-decoration: none;
}
.company_area a:hover{
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .company_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .company_content{
    padding: 15px 0;
    border-top: 1px solid #848484;
  }
  .company_content:last-child{
    border-bottom: 1px solid #848484;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  #company{
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  #company{
    padding: 60px 35px 80px 35px;
  }
  #company img{
    max-width: 260px;
  }
  .company_content{
    padding: 15px 0;
    border-top: 1px solid #848484;
  }
  .company_content:last-child{
    border-bottom: 1px solid #848484;
  }

}

/* /company */

/* links */
@media screen and (min-width: 768px) {
  .links_area{
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  #links{
    padding: 60px 0 80px 0;
  }
  .links_area{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .links_area div{
    width: 50% - 25px;
  }
  .links_area img{
    width: 100%;
  }
}
/* /links */


/* footer */
footer{
  background-color: #3E3A39;
  color: #fff;
}
footer a{
  text-decoration: none;
  color: #fff;
}
footer a:hover{
  text-decoration:underline;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  footer{
    height: 110px;
    padding: 30px 0;
  }
  .footer_link{
    display: flex;
    justify-content: center;
  }
  .footer_link a:nth-child(n+2) {
    margin-left: 30px;
  }
  .footer_link a:nth-child(n+2)::before {
    content: "|";
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  footer{
    height: 140px;
    padding: 30px 0;
  }

}
/* /footer */











/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.tab li a{
	display: block;
  background-color: #fff;
  color: #1E3042;
	margin:0 2px;
	padding:10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #1E3042;
  border-bottom: none;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background-color: #1E3042;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .tab li a{
    width: 250px;
    text-align: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .tab li a{
    width: 150px;
    text-align: center;
    font-size: 18px;
  }
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:60px;
  background-color: #1E3042;
  border-radius: 50px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .area {
    padding:30px 20px;
    border-radius: 20px;
  }
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}













/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(120, 123, 131, 0.8);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 900px;
  padding: 30px;
}

@media (min-width: 768px) {
  .modal__content {
    width: 640px;
  }
}
@media (max-width: 768px) {
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  background: #1E3042;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  font-size: 32px;
}
@media (max-width: 768px) {
} 

/* Swiperの矢印部分 */
@media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
}

/* 前への矢印 */
.swiper-button-prev {
  left: -60px;
}
.swiper-button-next {
  right: -60px;
}


/*めくりテキスト全共通*/

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*はみ出た色要素を隠す*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
.bgLRextend02::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1E3042;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}








/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:100%;
  margin:0 auto;
  padding-bottom: 5px;
}

.slider img {
   width:100%;/*スライダー内の画像を横幅100%に*/
   height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
   margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
   position: absolute;/*絶対配置にする*/
   top: 42%;
   cursor: pointer;/*マウスカーソルを指マークに*/
   outline: none;/*クリックをしたら出てくる枠線を消す*/
   border-top: 2px solid #666;/*矢印の色*/
   border-right: 2px solid #666;/*矢印の色*/
   height: 15px;
   width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
   left: -1.5%;
   transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
   right: -1.5%;
   transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
   text-align:center;
 margin:20px 0 0 0;
}

.slick-dots li {
   display:inline-block;
 margin:0 5px;
}

.slick-dots button {
   color: transparent;
   outline: none;
   width:8px;/*ドットボタンのサイズ*/
   height:8px;/*ドットボタンのサイズ*/
   display:block;
   border-radius:50%;
   background:#ccc;/*ドットボタンの色*/
}
@media screen and (min-width: 768px) {
  #modal01 .slick-dots,#modal02 .slick-dots,#modal03 .slick-dots {
    position: absolute;
    top: 327px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #modal01 .slick-prev, #modal01 .slick-next,#modal02 .slick-prev, #modal02 .slick-next,#modal03 .slick-prev, #modal03 .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    height: 32px;
    width: 33px;
  }
  #modal01 .slick-prev, #modal02 .slick-prev, #modal03 .slick-prev {
    left: -13.5%;
    transform: rotate(-135deg);
  }
  #modal01 .slick-next,#modal02 .slick-next,#modal03 .slick-next {
    right: -13.5%;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  #modal01 .slick-dots,#modal02 .slick-dots,#modal03 .slick-dots {
    position: absolute;
    top: 137px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #modal01 .slick-prev, #modal01 .slick-next,#modal02 .slick-prev, #modal02 .slick-next,#modal03 .slick-prev, #modal03 .slick-next {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    /* height: 32px;
    width: 33px; */
  }
  #modal01 .slick-prev, #modal02 .slick-prev, #modal03 .slick-prev {
    left: -17.5%;
  }
  #modal01 .slick-next,#modal02 .slick-next,#modal03 .slick-next {
    right: -17.5%;
  }

}
.swiper-img{
  display: flex; justify-content: center;
}
@media screen and (min-width: 768px) {
  .swiper-img img{
    max-height: 315px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal{
    top: 327px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-img img{
    max-height: 143px;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal{
    top: 152px;
  }
}

.slick-dots .slick-active button{
   background:#1E3042;/*ドットボタンの現在地表示の色*/
}

:root {
  --swiper-theme-color: #1E3042;
}

.slider img{
  /* border-radius: 10px; */
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: #fff;
}




/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
top:0;
  right: -100%;
width:30%;
  height: 100vh;/*ナビの高さ*/
/* background: #fff; */

background-image: url(../img/header-bg-sp.png);
background-repeat: no-repeat;
background-color: #fff;
  /*動き*/
transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 30%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
  #g-nav,
  #g-nav.panelactive #g-nav-list{
      width:100%;
      font-size: 26px;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:40%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
  text-align: center;
}

#g-nav li a{
color: #1E3041;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
  transition: all .5s;
  text-align: left;
}

#g-nav li a:hover{
  color:#ccc;
}

#g-nav .nav-lang a {
  opacity: 0.5;
  transition: .5s;
}

#g-nav .nav-lang a.is-active {
  opacity: 1;
}

.nav-lang li {
  border-right: 1px solid #1E3041;
}

.nav-lang li:last-child {
  border-right: none;
}

#g-nav ul.nav-lang {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-left: 20px;
  width: 100%;
}

#g-nav ul.nav-lang li a {
  padding: 0 10px 0 10px;
}
/*==================================================
5-2-1 3本線が×に
===================================*/
.openbtn{
	position:fixed;
    z-index: 8999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background-color: #BADEF3;
}

.openbtn.active{
    background-color: #fff;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #1E3042;
  	width: 45%;
  }
  .openbtn.active span{
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
      background-color: #1E3042;
      width: 45%;
    }
  


.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/**************************************
/terminal0/news_event/
***************************************/
.news_page {
  margin-bottom: 130px;
}
.page_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="485.866" height="635.717" viewBox="0 0 485.866 635.717"><path d="M243.849,633.985q-79.243,0-133.916-40.058-54.7-40.05-82.246-111.523Q.11,410.914.125,315.321q0-93.02,27.992-164.062t82.669-111.1Q165.471.132,242.988.125T374.758,40.16q54.25,40.05,81.808,111.1t27.561,164.062q0,95.615-27.123,167.084Q429.874,553.9,375.619,593.928,321.358,633.978,243.849,633.985Zm0-83.546c46.614,1.626,82.684-20.515,108.523-61.568s38.743-98.893,38.743-173.551q0-108.5-39.174-170.083C325.805,104.2,289.178,82.475,242.988,83.663c-47.059,1.218-83.828,20.537-110.231,61.575s-39.62,97.749-39.62,170.083q0,111.118,39.62,173.113C159.16,529.761,196.218,548.777,243.849,550.44Z" transform="translate(0.803 0.803)" fill="none" stroke="%234E5C6A" stroke-miterlimit="10" stroke-width="2"/></svg>');
  background-color: #1E3042;
  background-repeat: no-repeat;
  background-position: 50% -30px;
}
.page_title h1 {
  color: #D09966;
  text-align: center;
  font-family: "Roboto";
  font-size: 60px;
}
.news_year_title {
  color: #1E3042;
  font-family: "Roboto";
  font-size: 36px;
  font-weight: bold;
  border-bottom: solid 2px #D09966;
  padding-bottom: 10px;
  margin-top: 80px;
}
.news_year_title_unit {
  font-size: 20px;
}
.news_year_title + .news_content {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .news_page {
    margin-bottom: 110px;
  }
  .page_title {
    background-position: 50% 0;
    background-size: 400px auto;
  }
  .page_title h1 {
    font-size: 35px;
  }
  .news_year_title {
    font-size: 26px;
  }
  .news_year_title_unit {
    font-size: 16px;
  }
  .news_section + .news_section > .news_year_title {
    margin-top: 40px;
  }
}

/* annual-report */
.annual-report__banner {
  position: relative;
  text-align: right;
  margin-bottom: 70px;
}
.annual-report__banner a {
  transition: 0.3s
}
.annual-report__banner a:hover {
  opacity: 0.6;
}
.annual-report__banner img {
  max-width: 70%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .annual-report__banner {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .annual-report__banner img {
    max-width: 100%;
  }
}
/* /annual-report */