@charset "UTF-8";

/* 共通 ベース base
----------------------------------------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "小塚ゴシック Pro","Kozuka Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic" , "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f9f5da;
}
.wrapper {
  /*background: url("../images/body_bg.jpg")repeat;*/
	width: 100%;
}
.container {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
}
h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
}
.title_area h2 {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  background:linear-gradient(to bottom, #685900, #352E00);
  width: 100%;
  padding: 10px 20px;
}
.title .h2_sub {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 75px;
  padding-left: 15px;
  color: #001A66;
  position: relative;
}
.title .h2_sub::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 75px;
  height: 4px;
  background-color: #001A66;
}
h3 {
  font-size: 20px;
  font-size: 2rem;
}
h4 {
  font-size: 18px;
  font-size: 1.8rem;
}
p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1em;
  text-align: justify;
}

.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.relative {
  position: relative;
}

.adam {
  font-family: 'ADAM.CG PRO', sans-serif;
}
.m-plus {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.mincho {
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
.btn {
  margin-top: 50px;
  width: 280px;
}
.btn a {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  display: block;
  padding: 18px 30px;
  background: linear-gradient(225deg, #409c94 0%, #006DD9 50%, #006DD9 51%, #409c94 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
	border-radius: 10px;
}
.btn a:hover {
  background-position: 99% 50%;
}
.btn_wide {
  margin-top: 50px;
  width: 100%;
}
.btn_wide a {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  display: block;
  padding: 18px 30px;
  background: linear-gradient(225deg, #409c94 0%, #006DD9 50%, #006DD9 51%, #409c94 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
	border-radius: 10px;
	text-align: center;
}
.btn_wide a:hover {
  background-position: 99% 50%;
}
.btn_w a {
  background: #fff;
  color: #040449;
}
.btn_w a:hover {
  background: #040449;
  color: #fff;
}
.btn_link a {
  position: relative;
}
.btn_link a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.a_none {
  pointer-events: none;
}
.sp-s_none {
  display: block;
}
a.link{
	color: #003FFF;
  /*display: inline-block;*/
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s ease;
}
a.link:hover {
  color: #685900;
  transition: 0.3s ease;
}
.strikethrough {
    text-decoration: line-through;
}

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

}

@media only screen and (max-width: 1024px) {
	.container {
    padding-left: 0;
  }
	h2 {
    font-size: 20px;
    font-size: 2rem;
  }
  .title_area h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .btn {
    margin-top: 30px;
  }
  .btn a {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .title .h2_sub {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 479px) {
	h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .title_area h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .title .h2_sub {
    font-size: 16px;
    font-size: 1.6rem;
  }
  h3 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .btn a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 15px 20px;
  }
  .btn_link a::after {
    right: 10%;
    width: 16px;
    height: 16px;
  }
}

@media only screen and (max-width: 370px) {
  .title h2 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .title .h2_sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .sp-s_none {
    display: none;
  }
}



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

	 トップページ

----------------------------------------------- */
main {
  overflow: hidden;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 40px rgba(100,87,15,0.2));
}
main .main_inner {
  background-color: #fff;
  /*padding-top: 197px;*/
}
.h_bg,
.h_bg_all,
.f_bg {
  position: relative;
	z-index: 0;
}
.h_bg::before,
.h_bg::after,
.h_bg_all::before {
  content: '';
  position: fixed;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.h_bg::before {
  top: 0;
  left: 0;
  background-image: url(../images/h_bg_l.png);
  width: 344px;
  height: 412px;
}
.h_bg::after {
  top: 0;
  right: 0;
  background-image: url(../images/h_bg_r.png);
  width: 284px;
  height: 375px;
}
.h_bg_all::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(../images/h_bg.png);
  width: 1646px;
  height: 412px;
  /*width: 85.7vw;
  height: 21.4vw;*/
}
.f_bg::before,
.f_bg::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.f_bg::before {
  bottom: -10px;
  left: 0;
  background-image: url(../images/f_bg_l.png);
  width: 286px;
  height: 217px;
}
.f_bg::after {
  bottom: -120px;
  right: 0;
  background-image: url(../images/f_bg_r.png);
  width: 325px;
  height: 270px;
}


@media only screen and (max-width: 1200px) {
  .h_bg_all::before {
    width: 140vw;
    height: 36vw;
  }
}

@media only screen and (max-width: 1024px) {
  main .main_inner {
    /*padding-top: 170px;
    padding-top: 16.6vw;*/
  }
}

@media only screen and (max-width: 768px) {
  main {
    width: 100%;
  }
  main .main_inner {
    padding-top: 135px;
    padding-top: 18vw;
  }
  .f_bg::before {
    bottom: -10px;
    width: 30vw;
    height: 22vw;
  }
  .f_bg::after {
    bottom: -11.6vw;
    width: 35vw;
    height: 30vw;
  }
}

@media only screen and (max-width: 479px) {
  main .main_inner {
    padding-top: 78px;
    padding-top: 20vw;
  }
}





/* side_menu
----------------------------------------------- */
.side_menu { }

@media only screen and (max-width: 768px) {
 .side_menu {
   display: none;
 }
}

/* top_main
----------------------------------------------- */
#g_top .top_main {

}

#g_top .top_main .top_mainimg {
  width: 100%;
  margin: 0 auto;
}



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

}

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

}

@media only screen and (max-width: 1024px) {
  #g_top .top_main .main_text {
    left: 10%;
  }
}

@media only screen and (max-width: 768px) {
  #g_top .top_main .top_mainimg {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  #g_top .top_main .main_img {
    width: 100%;
    position: unset;
  }
  #g_top .top_main .main_img ul li {
    width: calc( 100% / 3 );
  }
  #g_top .top_main .main_text {
    top: 33%;
  }
}

@media only screen and (max-width: 479px) {
  #g_top .top_main .top_mainimg {
    height: 300px;
  }
  #g_top .top_main .main_text {
    top: 35%;
  }
  #g_top .top_main .main_text h1 {
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 8px;
  }
  #g_top .top_main .main_text .date_area p {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 370px) {
  #g_top .top_main .top_mainimg {
    height: 220px;
  }
  #g_top .top_main .main_text h1 {
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 5px;
    /*margin-bottom: 20px;*/
  }
  #g_top .top_main .main_text .date_area p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}




/* top_info
----------------------------------------------- */
#g_top .top_contents {
  padding: 0 20px;
  margin-bottom: 300px;
}
#g_top .mainimg_area {
  line-height: 0;
}
#g_top .info_area {

}
#g_top .info_list {
  color: #fff;
  background-color: #000;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  padding: 2px 8px;
}
#g_top .info_area .info_box {
  padding: 5px 20px 20px;
  border-bottom: 2px solid #242000;
 }
#g_top .info_area .info_box ul li {
  gap: 0 40px;
  padding: 15px;
  border-bottom: 1px dashed #cccccc;
}
/*#g_top .info_area .info_box ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 51%;
  right: 2.4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #00468C;
  font-size: 13px;
  z-index: 1;
}
#g_top .info_area .info_box ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}*/
#g_top .info_area .info_box ul li p {
  margin: 0;
}
#g_top .info_area .info_box .info_date {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
#g_top .info_area .info_box_inner {
  /*height: 300px; /*1つ表示は70px*/
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
#g_top .info_area .info_box_inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.simplebar-scrollbar::before {
  background: #636363 !important;
  border-radius: 50px !important;
  width: 9px;
  margin-left: 3px;
  margin-top: 2px;
  opacity: 0.8 !important;
  left: 1px !important;
  right: 1px !important;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: rgb(237 237 237 / 80%);
  width: 15px !important;
}




@media only screen and (max-width: 1024px) {
  #g_top .top_contents {
    padding: 0 15px;
  }
  #g_top .mainimg_area h1 img  {
    width: 100%;
  }
  #g_top .info_area .info_box ul li {
    border-color: #DBDBEA;
  }
  #g_top .info_area .info_box .news_text {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  #g_top .top_contents {
    margin-left: 0;
    width: 100%;
    margin-bottom: 24vw;
  }
  #g_top .top_contents {
    padding: 0;
  }
  #g_top .info_area .info_box {
    background-color: #fff;
  }
  #g_top .info_area .info_box.topix {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 479px) {
  #g_top .top_contents {
    padding: 0;
  }
  #g_top .info_area .info_box {
    padding: 5px 10px 20px;
  }
  #g_top .info_area .info_box ul li {
    padding: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  #g_top .info_area .info_box p {
  }
  #g_top .info_area .info_box .info_date {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  #g_top .info_area .info_box .news_title {
    width: 100%;
  }
}

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

}

/* top_message_erea
----------------------------------------------- */
#g_top .top_message_erea{
	border: 5px solid #e91e1e;
  padding: 5%;
  margin: 5% auto;
  background: #fff;
  border-radius: 6px;
}
#g_top .top_message_erea p{
	  margin: 0 auto;
    font-weight: 500;
}
@media only screen and (max-width: 479px) {
  #g_top .top_message_erea {
    width: 90%;
  	border: 2px solid #e91e1e;
  }
}

/*bnr_area
----------------------------------------------- */
#g_top .bnr_area  {
  margin-bottom: 80px;
  /*opacity: 0;*/
}
#g_top .bnr_area .title {
  filter: drop-shadow(2px 2px 4px #1D5686);
}
#g_top .bnr_area .title h2 {
  color: #fff;
  margin-bottom: 30px;
}
#g_top .bnr_area .title .h2_sub {
  color: #fff;
}
#g_top .bnr_area .title .h2_sub::before {
  background-color: #fff;
}
#g_top .bnr_area ul {
  gap: 10px 15px;
}
#g_top .bnr_area li {
    max-width: 280px;
}
#g_top .bnr_area li a:hover {
  opacity: 0.9;
}


  /*#g_top .bnr_area ul {
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  }
  #g_top .bnr_area ul li {
    width: 100%;
  }*/

#g_top.english .bnr_area {
  /*opacity: 0;*/
}


@media only screen and (max-width: 1024px) {
  #g_top .bnr_area .title {
    filter: none;
  }
  #g_top .bnr_area .title h2 {
    color: #001A66;
    margin-bottom: 10px;
  }
  #g_top .bnr_area .title .h2_sub {
    color: #001A66;
  }
  #g_top .bnr_area .title .h2_sub::before {
    background-color: #001A66;
  }
  #g_top.english .bnr_area {
    display: none;
  }
}

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

}

@media only screen and (max-width: 479px) {
  #g_top .bnr_area ul li {
    width: calc( 100% / 2 - 7.5px );
  }
}






/*app_area
----------------------------------------------- */
#g_top .app_area  {
  margin-bottom: 50px;

}
#g_top .app_area ul {
    gap: 10px 15px;
}
/*#g_top .app_area ul {
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
  }*/
#g_top .app_area ul li {
  width: 100%;
  max-width: 250px;
  background: #fff;
  border: 1px solid #546A7C;
  position: relative;
}
#g_top .app_area ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 51%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #00468C;
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 1;
}
#g_top .app_area ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
#g_top .app_area ul li a {
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  padding: 30px 20px;
}
#g_top .app_area ul li a:hover {
  background-color: #1c5aa5;
  color: #fff;
}
#g_top .app_area ul li.gradation {
  border: none;
}
#g_top .app_area ul li.gradation::before,
#g_top .app_area ul li.gradation::after {
  display: none;
}
#g_top .app_area ul li.gradation a {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  display: block;
  padding: 18px 30px;
  background: linear-gradient(225deg, #06062C 0%, #006DD9 50%, #006DD9 51%, #06062C 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
}
#g_top .app_area ul li.gradation a:hover {
  background-position: 99% 50%;
}


#g_top.english .app_area {
  opacity: 0;
}



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

}

@media only screen and (max-width: 1024px) {
  #g_top .app_area ul li {
    width: calc( 100% / 2 - 7.5px );
    max-width: unset;
  }
  #g_top.english .app_area {
    display: none;
  }
  #g_top .app_area ul li.gradation a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 768px) {
  #g_top .app_area ul li {
    width: 100%;
  }
  #g_top .app_area ul li.gradation {
    width: calc( 100% / 2 - 7.5px );
    max-width: unset;
  }
}

@media only screen and (max-width: 479px) {
  #g_top .app_area ul li.gradation {
    width: 250px;
  }
  #g_top .app_area ul li.gradation a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 370px) {
  #g_top .app_area ul li a {
    padding: 20px;
  }
}


/* sns_link
----------------------------------------------- */
.sns_link {
  position: absolute;
  right: 20px;
  top: 0;
}
.sns_link a:hover {
  opacity: 0.7;
}
.sns_link img {
  width: unset;
}



@media only screen and (max-width: 1280px) {
  .sns_link {
    right: 10px;
  }
  .sns_link img {
    width: 140px;
  }
}

@media only screen and (max-width: 1024px) {
  .sns_link {
    right: 0;
    top: 103px;
  }
  .sns_link img {
    width: 120px;
  }
}

@media only screen and (max-width: 479px) {
  .sns_link {
    top: 65.5px;
  }
  .sns_link img {
    width: 90px;
  }
}
