@charset "UTF-8";

.home #contents>.inner {
  /* トップページ幅 100% */
  width: 100%;
  max-width: 100%;
}

.topinner {
  /* コンテンツは1000pxに */
  width: 1200px;
  margin: 0 auto;
  max-width: 96%;
}

/* tinyMCE用に見出しをリセット */
.home h3,
.home h4,
.home h5 {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
  }

.home h3::before,
.home h3::after,
.home h4::before,
.home h4::after,
.home h5::before,
.home h5::after {
  display: none;
}

/*==========================
flex設定
==========================*/
@media screen and (min-width: 768px) {
  .columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }

  .columns.jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .columns.jcs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .columns.jcc {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }

  .columns.jce {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .columns.ais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .columns.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .columns.aie {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .columns.reverse {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .columns.col2 {
    gap: 0 60px;
  }

  .columns.col2>* {
    width: calc((100% - 60px)/2);
  }

  .columns.col3 {
    gap: 0 40px;
  }

  .columns.col3>* {
    width: calc((100% - 80px)/3);
  }
  .columns.col4 {
    gap: 0 20px;
  }
  .columns.col4>* {
    width: calc((100% - 60px)/4);
  }
}

@media screen and (min-width: 768px) and (max-width: 1239px) {
  .columns.col2 {
    gap: 0 30px;
  }

  .columns.col2>* {
    width: calc((100% - 30px)/2);
  }

  .columns.col3 {
    gap: 0 15px;
  }

  .columns.col3>* {
    width: calc((100% - 30px)/3);
  }
  .columns.col4 {
    gap: 0 10px;
  }

  .columns.col4>* {
    width: calc((100% - 30px)/4);
  }
}

@media (max-width : 767px) {
  .sp_columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap:0 10px;
  }

  .sp_columns.col2>*,
  .sp_columns.col3>*,
  .sp_columns.col4>*,
  .sp_columns.col5>*,
  .sp_columns.col6>* {
    width: calc((100% - 10px) / 2);
  }
}


/*==========================
	　mainimage
==========================*/
.mainimage {
  position: relative;
}

.main_copy {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 961px;
  max-width: 50%;
}

/*-- スライダーの時 ------------*/
.slider {}

.slick-slide img {
  margin: 0 auto;
}

button.slick-arrow {
  /* 矢印ボタン */
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  height: 40px;
  width: 16px;
  text-indent: -9px;
  z-index: 1;
}

button.slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

button.slick-prev {
  /* 矢印（前へ）ボタン */
  background: url(img/btn_prev.png) no-repeat;
  left: 18%;
  margin-left: -16px;
}

button.slick-next {
  /* 矢印（次へ）ボタン */
  background: url(img/btn_next.png) no-repeat;
  right: 18%;
  margin-right: -16px;
}

@media screen and (max-width: 1650px) {
  button.slick-prev {
    left: 13.7%;
  }

  button.slick-next {
    right: 13.7%;
  }
}

@media screen and (max-width: 1400px) {
  button.slick-prev {
    left: 8%;
  }

  button.slick-next {
    right: 8%;
  }
}

@media screen and (min-width: 1200px) {
  .slick-track {}

  .mainimage .slick-slide:not(.slick-center) {
    /* 前と次の画像を半透明に */
    opacity: 0.4;
    -moz-opacity: 0.4;
    filter: alpha(opacity=40);
  }
}

/*==========================
	新着情報
==========================*/
.sec_news .news {
  margin-bottom: 0;
  position: relative;
}

/* 新着情報見出し */
.sec_news h3 {
  color: #333;
  font-weight: 700;
  font-size: 20px;
  margin-bottom:1.4em;
  vertical-align: bottom;
text-align: left;}
.sec_news h3 img{
margin-bottom:10px;
}
/* 一覧へボタン */
.sec_news .btn {
  position: absolute;
  top: 10px;
  right: 20px;
}

.sec_news .news .btn a {
  display: inline-block;
  line-height: 1.2;
  padding: 0.25em 0.5em 0.15em;
  text-decoration: none;
  color: #fff;
  background: #264d96;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.sec_news .news .btn a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}

/* -------------------------------追加 */
.sec_news .news .btn a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 5%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sec_news .news dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.sec_news .news dt {
  padding: 5px 10px 5px 0;
  width: 120px;
  display: inline-block;
  box-sizing: border-box;
}

.sec_news .news dd {
  display: inline-block;
  width: calc(100% - 120px);
  padding: 5px 10px 5px 0px;
  box-sizing: border-box;
}

/* -------------------------------ここまで */
/* 新着情報 */
.sec_news .news dl {
  line-height: 1.3;

}

.sec_news .news dt {
  margin-bottom: 18px;
  padding: 0 20px 7px;
}

.sec_news .news dd {
  margin-bottom: 18px;
  padding: 0 20px 15px;
}

.sec_news .news dd a {
  text-decoration: none;
  color: #333;
}

.sec_news .news dd a:hover {
  color: #3296b6;
}

/*==========================
	汎用に使えるボタン
==========================*/
.btn-style {
  text-align: center;
}

.btn-style a {
  color:#fff;
  border:none;
    background: -webkit-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: -moz-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  width: 280px;
  max-width: 100%;
  padding: 15px 35px 15px 10px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  box-sizing: border-box;
  font-size: 18px;
  position: relative;
  letter-spacing: 0.05em;
}

.btn-style a::after {content: "";display: block;position: absolute;top:44%;right: 15px;left:auto;margin:0 auto;width: 20px;height:4px;border-right:2px solid #fff;border-bottom:1px solid #fff;-webkit-transform: skew(45deg);transform: skew(45deg);transition: 0.2s;}

.btn-style a:hover {
opacity:0.7;
}
.under .btn-style a {
  width: auto;
  min-width: 280px;
}
/*==========================
	loopSlider　無限ループスライダー
==========================*/
.loopSliderWrap {
  top: 0;
  left: 0;
  height: 400px;
  overflow: hidden;
  position: absolute;
}

.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 400px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.loopSlider ul {
  height: 400px;
  float: left;
  overflow: hidden;
}

.loopSlider ul li {
  width: 400px;
  height: 400px;
  float: left;
  display: inline;
  overflow: hidden;
}

/*==========================
	　TOP コンテンツ
==========================*/
.top .mainblock a {
  text-decoration: none;
}

.top .mainblock a:hover {}

/*-- 見出し --------------*/
section h2 {

}

/*-- ボックスその他 --------------*/

/********************************
	Responsive
*********************************/
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec_news .news dt {
    margin-bottom: 5px;
  }

  .sec_news .news dd {
    width: 100%;
  }

  /* -------------------------- */
  section h2{
    font-size:36px;
  }

}

@media screen and (max-width: 1239px) {

  /*コンテンツが横幅いっぱいになったら*/
  /* -------------------------------追加 */
  .sec_news .news dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 0 5px;
    margin-bottom: 0;
  }

  .sec_news .news dd {
    width: 100%;
    display: block;
    padding: 0 0 10px;
  }

  /* -------------------------------ここまで */
}

@media screen and (max-width: 767px) {

  /* スマホ */
  .topinner {
    /* width: 420px; */
    margin: 0 auto;
    box-sizing: border-box;
  }

  .main_copy {
    width: 650px;
    max-width: 86%;
  }

  /*==========================
	新着情報
==========================*/
  #main .news {
    position: relative;
  }

  #main .news .btn {
    right: 5px;
    top: 10px;
  }

  #main .news .btn a {
    font-size: 12px;
  }

  /*==========================
	loop
==========================*/
  .loopSlider {
    height: 200px;
  }

  .loopSlider ul {
    height: 200px;
  }

  .loopSlider ul li {
    width: 200px;
    height: 200px;
  }

  /*==========================
	　TOP コンテンツ
==========================*/
}

@media screen and (max-width: 480px) {
  /* スマホ480px */
}

@media screen and (max-width: 320px) {
  /* スマホ320px */
}

/* ---------------------------------------------追加 */
/*==========================
	リンクボックス
==========================*/
.link_box {
  position: relative;
  transition: .3s;
}

.link_box:hover {
  cursor:pointer;
  opacity: .7;
}

.link_box>*:last-child {
  margin: 0;
  display: contents;
  font-size: 0;
}

.link_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link_box a span.link {
  display: none;
}

@media (max-width : 767px) {
  .link_btn a {
    margin: 0 auto 10px;
    font-size: 14px !important;
  }

  .link_btn.btns a {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}

/*==========================
画像位置
==========================*/
.mainimage img,
figure img {
  vertical-align: middle;
}

/*==========================
	　ボタン
==========================*/
@media screen and (min-width: 768px) {
  .btn-style.left {
    text-align: left;
  }

  .btn-style.right {
    text-align: right;
  }
}

/*==========================
	　アニメーション
==========================*/
.animated.at01 {
  animation-delay: 0.4s;
}

.animated.at02 {
  animation-delay: 0.8s;
}

@media (min-width : 768px) {
  .reverse .at01 {
    animation-delay: 0.8s;
  }

  .reverse .at02 {
    animation-delay: 0.4s;
  }
}


/* TOP */
section {
  padding: 100px 0;
}
section h2 {
  position: relative;
  font-size: 48px;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.05em;
}
section h2 .subtext {
  display: table;
  margin: auto;
  font-size: 26px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0.1em;
  position: relative;
}
/*タイトル下下線*/
/* section h2 .subtext:before, section h2 .subtext:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 1000px;
  height: 1px;
  border-bottom: 1px solid #bc9758;
}
section h2 .subtext:before {
  right: calc(100% + 0.8em);
}
section h2 .subtext:after {
  left: calc(100% + 0.8em);
} */
@media screen and (min-width: 768px) and (max-width: 1239px) {
  section h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
  section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  section h2 .subtext {
    font-size: 16px;
    margin-top: 10px;
    padding-top: 10px;
  }
  section h2 .subtext:before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  section h2 .subtext:after {
    display: none;
  }
  section p {
    letter-spacing: 0;
  }
}
.sec01 {
  padding-bottom: 0;
}
.sec01 .cont01 {
  position: relative;
  z-index: 1;
  min-height: 400px;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.sec01 .cont01:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200px;
  margin: 0 auto;
  width: 1800px;
  height: 100%;
  background: url("img/sec01_bg.jpg") no-repeat center / cover;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec01 .cont01 {
    padding-right: 200px;
  }
  .sec01 .cont01:after {
    width: calc(100% + 100px);
    left: -50px;
    background-position: right 30% center;
  }
}
@media screen and (max-width: 767px) {
  .sec01 .cont01 {
    padding-bottom: 230px;
    text-align: center;
    padding-top: 0;
  }
  .sec01 .cont01:after {
    background: #fff url("img/sp_sec01_bg01.jpg") no-repeat center bottom;
    background-size: 100% auto;
    left: -20px;
    width: calc(100vw + 40px);
    height: calc(100% + 10px);
    top: -10px;
  }
}
.sec02 {
  padding-bottom: 0;
}
.sec02 .cont_box {
  padding: 100px 0;
  text-align: center;
}
.sec02 .cont_box h3 {
  display: table;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 50px;
  text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
      -webkit-filter:drop-shadow(0 0 5px #fff);
    filter:drop-shadow(0 0 5px #fff);
}
.sec02 .cont_box h3 .subtext {
  display: table;
  font-size: 30px;
  margin: 0 auto 20px;
  background: -webkit-linear-gradient(180deg, transparent 60%, #dbdbdb 60%);
  background: -moz-linear-gradient(180deg, transparent 60%, #dbdbdb 60%);
  background: linear-gradient(180deg, transparent 60%, #dbdbdb 60%);

    -webkit-filter:drop-shadow(0 0 5px #fff);
    filter:drop-shadow(0 0 5px #fff) ;
}
.sec02 .cont_box h3 .line {
  display: table;
  margin: auto;
  position: relative;
}
.sec02 .cont_box h3 .line:after {
      content: "";
    display: block;
    position: absolute;
  bottom:0;
    left:0;
    right:0;
    margin:0 auto;
    width:100%;
    height:1px;
    border-bottom: 1px solid #000;
  box-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
.sec02 .cont_box h3 + p{
  text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
.sec02 .cont_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 660px;
  max-width: 100%;
  margin: 50px auto;
}
.sec02 .cont_box ul li {
background:#666666;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  height: 130px;
  width: calc((100% - 30px)/3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec02 .cont_box ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0 auto;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  box-sizing: border-box;
}
.sec02 .cont01 {
  background: url("img/sec02_bg01.jpg") no-repeat center / cover;
}
.sec02 .cont01 ul {
  width: 820px;
}
.sec02 .cont01 ul li {
  width: calc((100% - 45px)/4);
  transition:0.2s;
}
.sec02 .cont01 ul li:before {
      content: "";
    display: block;
    position: absolute;
    bottom:20px;
    left:0;
    right:0;
    margin:0 auto;
    width:16px;
    height:3px;
  border-right:2px solid #fff;
  border-bottom:1px solid #fff;
  transform:skew(45deg);
}
.sec02 .cont01 ul li:hover{
opacity:0.7;
  cursor:pointer;
}
.sec02 .cont01 ul li a{z-index: 1;position: relative;color:#fff;width:100%;height:100%;display: flex;flex-wrap: wrap;justify-content: center;align-items: center;padding-bottom:10px;}
.sec02 .cont02 {
  background: url("img/sec02_bg02.jpg") no-repeat center / cover;
}
.sec02 .cont03 {
  background: url("img/sec02_bg03.jpg") no-repeat center / cover;
}
.sec02 .btn_box .btn-style a {
  width: 450px;
  font-size: 28px;
  height: 100px;
}

@media screen and (min-width: 768px) {
  .sec02 .columns.btn_box.col2 {
    max-width: 930px;
  }
  .sec02 .columns.btn_box.col3 {
    max-width: 1200px;
  }
  .sec02 .btn_box .btn-style a:after {
    width: 30px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec02 .cont_box h3 {
    font-size: 36px;
  }
  .sec02 .btn_box .btn-style a {
    font-size: 20px;
  }
  .sec02 .btn_box .btn-style a:after {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .cont_box {
    padding: 30px 0;
  }
  .sec02 .cont_box h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sec02 .cont_box h3 .subtext {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .sec02 .cont_box ul {
    gap: 5px;
    margin: 20px auto;
  }
  .sec02 .cont_box ul li {
    width: calc((100% - 5px) / 2);
    font-size: 16px;
    height: 90px;
  }
  .sec02 .cont01 {
    background: url("img/sp_sec02_bg01.jpg") no-repeat center / cover;
  }
  .sec02 .cont02 {
    background: url("img/sp_sec02_bg02.jpg") no-repeat center / cover;
  }
  .sec02 .cont02 ul li {
    width: calc((100% - 10px) / 2);
  }
  .sec02 .cont02 ul li:nth-child(2) {
    letter-spacing: -1px;
  }
  .sec02 .cont03 {
    background: url("img/sp_sec02_bg03.jpg") no-repeat center / cover;
  }
  .sec02 .cont03 ul li {
    width: calc((100% - 10px) / 2);
    letter-spacing: 0;
  }
  .sec02 .btn_box .btn-style a {
    font-size: 16px;
    width: 280px;
    padding: 5px 35px 5px 10px;
    height: 55px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}
.sec03 .cont_box {
  position: relative;
}
.sec03 .cont_box .topinner {
  position: relative;
  z-index: 1;
}
.sec03 .cont_box .topinner:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -200px;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.sec03 .cont_box + .cont_box {
  margin-top: 60px;
}
.sec03 figure {
  position: absolute;
  max-width: 45%;
  top: 30px;
  right: 0;
  z-index: 2;
}
.sec03 .cont02 figure {
  left:0;
  right: auto;
}
.sec03 .cont02 .text_box{
  margin-left:auto;
}
.sec03 .cont_box.cont02 .topinner:after{
  left:auto;
  right:-200px;
}
.sec03 .text_box {
  width: 640px;
  padding: 100px 0;
  max-width: 80%;
}
.sec03 .text_box p:last-child{
  margin-bottom:0;
}
.sec03 .text_box h3 {
  color: #121212;
  margin-bottom: 40px;
}
.sec03 .text_box h3 .line01 {
  display: inline;
  margin: 0 auto 10px;
  background: -webkit-linear-gradient(180deg, transparent 70%, #e8e8e8 70%);
  background: -moz-linear-gradient(180deg, transparent 70%, #e8e8e8 70%);
  background: linear-gradient(180deg, transparent 70%, #e8e8e8 70%);
}
.sec03 .text_box h3 .text-small {
  letter-spacing: 0.05em;
  font-size: 26px;
  background: -webkit-linear-gradient(180deg, transparent 60%, #e8e8e8 60%);
  background: -moz-linear-gradient(180deg, transparent 60%, #e8e8e8 60%);
  background: linear-gradient(180deg, transparent 60%, #e8e8e8 60%);
}
.sec03 .cont01 h3 {
  text-align: center;
  font-size: 48px;
}
.sec03 .cont02 h3 {
  font-size: 44px;
  letter-spacing: 0;
}
.sec03 .cont03 h3 {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 1239px) {
  .sec03 figure {
    position: relative;
    width: auto;
    max-width: 100%;
    text-align: right;
  }
  .sec03 .cont02 figure {
    text-align:left;
  }
  .sec03 .text_box {
    width: 900px;
    max-width: 90%;
    padding: 100px 0 50px;
  }
  .sec03 .cont01 figure {
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 767px) {
  .sec03 .cont_box + .cont_box {
    margin-top: 30px;
  }
  .sec03 .cont_box .topinner:after {
    left: 0;
    top: 0;
    transform: none;
    max-width: 100%;
  }
  .sec03 .cont_box figure {
    margin: 0;
    top: 0;
  }
  .sec03 .cont_box .text_box {
    max-width: 100%;
    padding: 20px 4%;
  }
  .sec03 .cont_box .text_box h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sec03 .cont_box .text_box h3 .text-small {
    font-size: 20px;
  }
  .sec03 .cont_box .text_box p:last-child {
    margin-bottom: 0;
  }
  .sec03 .cont01 .topinner:after {
    height: calc(100% - 50px);
    bottom: 0;
    top: auto;
  }
  .sec03 .cont01 h3 {
    font-size: 22px;
  }
}
.sec04 {
  text-align: center;
  background: url("img/sec04_bg.jpg") no-repeat center / cover;
}
.sec04 .catch {
  display: table;
  margin: auto;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 70px;
  border: 1px solid #121212;
  line-height: 1;
}
.sec04 .catch + p {
  margin: 20px 0 40px;
}
.sec04 .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 40px;
}
.sec04 .link_box {
  border: 1px solid #c2a76e;
  background: #fff;
  height: 210px;
  width: 530px;
  max-width: calc((100% - 40px)/2);
  padding: 0 50px;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}
.sec04 .link_box:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: 0 auto;
  width: 0;
  height: 0;
}

.sec04 .link_box .ttl {
  color: #b28f47;
  font-size: 44px;
  font-weight: bold;
  border-bottom: 1px solid #b28f47;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1;
}
.sec04 .link_box .text-large {
  font-size: 28px;
}
.sec04 .tel_btn .ttl {
  color: #b28f47;
  font-size: 44px;
}
.sec04 .tel_btn .icon {
  padding-left: 40px;
  background: url("img/icon_tel.png") no-repeat center left;
}
.sec04 .line_btn .ttl {
  color: #b28f47;
  font-size: 42px;
}
.sec04 .line_btn:after {
  border-bottom: solid 26px #b28f47;
  border-left: solid 26px transparent;
}
@media screen and (min-width: 768px) {
.sec04 .link_box:hover:first-child {
  opacity:1;
cursor:auto;
}
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec04 .link_box {
    padding: 0 20px;
    font-size: 16px;
  }
  .sec04 .link_box .text-large {
    font-size: 20px;
  }
  .sec04 .tel_btn .ttl {
    font-size: 36px;
  }
  .sec04 .line_btn .ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .catch {
    font-size: 16px;
    padding: 10px 25px;
  }
  .sec04 .link_box {
    max-width: 100%;
    padding: 20px;
    height: 130px;
  }
  .sec04 .link_box .text-large {
    font-size: 14px;
  }
  .sec04 .tel_btn .ttl {
    font-size: 28px;
  }
  .sec04 .tel_btn .ttl .icon {
    background-size: 22px;
    padding-left: 28px;
  }
  .sec04 .tel_btn .ttl .icon a{
    color:#b28f47;
    display: inline;
    position: relative;
  }
  .sec04 .tel_btn:after {
    border-bottom: solid 26px #b28f47;
    border-left: solid 26px transparent;
  }
  .sec04 .line_btn .ttl {
    font-size: 20px;
  }
}
.sec05 {
  padding-bottom: 0;
}
.sec05 h3 {
  font-size: 34px;
  color: #b28f47;
  text-align: center;
  margin-bottom: 20px;
}
.sec05 .columns {
  gap: 10px 20px;
}
.sec05 .link_box {
  color: #fff;
  width: 360px;
  max-width: 100%;
  height: 240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sec05 .link_box p:first-child {
  font-size: 34px;
  margin-bottom: 0;
}
.sec05 .link_box:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  margin: 0 auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #fff;
  box-sizing: border-box;
}
.sec05 .link_box:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 35px;
  right: 30px;
  left: auto;
  margin: 0 auto;
  width: 30px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  transition: 0.2s;
}
.sec05 .link_box p:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sec05 .link_box .link {
  display: block;
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 70px;
  font-size: 24px;
}
.sec05 .column:nth-child(1) .link_box {
    background: -webkit-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: -moz-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
}
.sec05 .column:nth-child(2) .link_box {
    background: -webkit-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: -moz-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
}
.sec05 .column:nth-child(3) .link_box {
    background: -webkit-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: -moz-linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
  background: linear-gradient(90deg, #cbaa60 0%, #82642b 100%);
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec05 h3 {
    font-size: 24px;
  }
  .sec05 .columns {
    gap: 15px;
  }
  .sec05 .link_box {
    height: 180px;
  }
  .sec05 .link_box p:first-child {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .sec05 .column + .column {
    margin-top: 20px;
  }
  .sec05 h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .sec05 .link_box {
    height: 120px;
    width: 100%;
  }
  .sec05 .link_box p:first-child {
    font-size: 22px;
  }
  .sec05 .link_box .link {
    font-size: 18px;
    right: 60px;
  }
  .sec05 .link_box:before {
    width: 20px;
    bottom: 30px;
  }
}
.sec06 {
  padding-bottom: 0;
}
.sec06 .link_box {
  height: 300px;
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.sec06 .link_box .columns {
  width:100%;
  gap: 20px 60px;
  justify-content: flex-start;
  align-items: center;
}
.sec06 .link_box .link {
  display: block;
  color: #fff;
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 24px;
  line-height: 1;
}
.sec06 .link_box .link:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: -20px;
  left: auto;
  margin: 0 auto;
  width: 100px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  transition: 0.2s;
}
.sec06 .ttl {
  height: 180px;
  width: 440px;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 40px;
  border: 1px solid #fff;
  margin-bottom: 0;
  line-height: 1.4;
}
.sec06 ul li {
  color: #fff;
  position: relative;
  padding-left: 30px;
  font-size: 24px;
}
.sec06 ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 15px;
  height: 7px;
  border-bottom: 3px solid #c4952c;
  border-left: 3px solid #c4952c;
  transform: rotate(-45deg);
}
.sec06 .cont01 {
  background: url("img/sec06_bg01.jpg") no-repeat center / cover;
}
.sec06 .cont02 {
  background: url("img/sec06_bg02.jpg") no-repeat center / cover;
}
.sec06 .cont03 {
  background: url("img/sec06_bg03.jpg") no-repeat center / cover;
}
.sec06 .cont03 + .columns {
  gap: 0 30px;
}
.sec06 .cont03 + .columns .btn-style {
  width: calc((100% - 60px) / 3);
}
.sec06 .cont03 + .columns .btn-style a {
  font-size: 20px;
  height: 100px;
}
.sec06 .cont03 + .columns .btn-style a:after {
  width: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec06 .link_box {
    padding: 0 30px;
  }
  .sec06 .link_box .columns {
    gap: 20px;
  }
  .sec06 .ttl {
    font-size: 24px;
    height: 180px;
    width: 440px;
    max-width: calc(40% - 20px);
  }
  .sec06 ul {
    max-width: 60%;
  }
  .sec06 ul li {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .sec06 {
    padding-bottom: 30px;
  }
  .sec06 .link_box .columns {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  .sec06 .link_box {
    height: 180px;
    padding: 0px 10px;
    margin-bottom: 20px;
  }
  .sec06 .link_box .link {
    font-size: 18px;
    right: 50px;
    bottom: 10px;
  }
  .sec06 .link_box .link:before {
    width: 20px;
    right: -30px;
    top: 50%;
    height: 5px;
    transform: translateY(-50%) skew(45deg);
  }
  .sec06 .ttl {
    height: 120px;
    font-size: 16px;
    max-width: 35%;
  }
  .sec06 ul {
    max-width: calc(65% - 20px);
  }
  .sec06 ul li {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 5px 0 5px 20px;
  }
  .sec06 ul li:before {
    top: 10px;
    width: 10px;
    height: 4px;
    border-bottom: 2px solid #c4952c;
    border-left: 2px solid #c4952c;
  }
  .sec06 .cont03 + .columns .btn-style {
    width: 100%;
  }
  .sec06 .cont03 + .columns .btn-style a {
    height: auto;
    padding: 15px 35px 15px 10px;
    font-size: 16px;
  }
}
.sec07 {
  padding-bottom: 0;
}
.sec07 .bg {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.sec07 .bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  margin: 0 auto;
  width: 1700px;
  height: 100%;
  background: url("img/sec07_bg.jpg") no-repeat center / cover;
  z-index: -1;
}
.sec07 .img_box {
  width: 470px;
  max-width: 44%;
}
.sec07 .img_box .name_box {
  width: 360px;
  max-width: 100%;
  height: 270px;
  padding: 30px 35px;
  background:#fff;
  text-align: center;
  margin-top: -150px;
  margin-left: auto;
  position: relative;
  right: -50px;
}
.sec07 .img_box .name_box p {
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: bold;
}
.sec07 .img_box .name_box p .f30 {
  font-size: 30px;
  font-weight: bold;
}
.sec07 .img_box .name_box p .f16 {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.sec07 .img_box .name_box p:first-child {
  font-size: 30px;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
.sec07 .img_box .name_box .btn-style a {
  color: #fff;
  border-color: #fff;
}
.sec07 .img_box .name_box .btn-style a:after {
  border-color: #fff;
}
.sec07 .text_box {
  width: 640px;
  max-width: calc(100% - 40% - 85px);
    text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
.sec07 .columns.col2 {
  gap: 20px 40px;
}
.sec07 .columns.col2 > * {
  width: calc((100% - 40px)/ 2);
}
.sec07 h3 {
  font-size: 26px;
  padding-left: 30px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 40px;
    text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
      0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}

.sec07 h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  margin: 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #666666;
  transform: rotate(45deg);
}
.sec07 h3:after{
      content: "";
    display: block;
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    border-bottom: 1px solid #77614d;
    box-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
.sec07 ul li {
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff,
    0 0 8px #fff,0 0 8px #fff,0 0 8px #fff;
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .sec07 .img_box .name_box {
    right: -20px;
    margin-top: -5vw;
  }
}
@media screen and (max-width: 767px) {
  .sec07 {
    background: #e7e7e7;
    padding: 30px 0;
  }
  .sec07 .bg {
    padding: 0;
  }
  .sec07 .bg:after {
    display: none;
  }
  .sec07 .img_box {
    width: 100%;
    max-width: 100%;
  }
  .sec07 .img_box .name_box {
    max-width: 70%;
    right: 0;
    left: 0;
    margin: -30px auto 20px;
    padding: 20px;
    height: 220px;
  }
  .sec07 .img_box .name_box p {
    font-size: 16px;
  }
  .sec07 .img_box .name_box p:first-child {
    font-size: 22px;
  }
  .sec07 .img_box .name_box p .f16 {
    font-size: 14px;
  }
  .sec07 .img_box .name_box p .f30 {
    font-size: 22px;
  }
  .sec07 .img_box .name_box .btn-style a {
    font-size: 14px;
  }
  .sec07 .text_box {
    width: 100%;
    max-width: 100%;
  }
  .sec07 .columns.col2 > * {
    width: 100%;
  }
  .sec07 h3 {
    font-size: 20px;
    padding-left: 22px;
    margin-top: 20px;
  }
  .sec07 h3:before {
    width: 12px;
    height: 12px;
  }
  .sec07 ul li {
    font-size: 16px;
  }
}

.top_pickup .contents_block {
  background: url(img/top_pickup_bg.jpg) no-repeat center / cover;
  padding: clamp(40px, 25.437px + 3.883vw, 100px) 0;
  line-height: 1.6;
  font-weight: bold;
}
@media ( max-width : 767px ) {
  .top_pickup .contents_block {
    background: url(img/top_pickup_bg_sp.jpg) no-repeat center / cover;
    padding-top: 100vw;
  }
}

.top_pickup .contents_box {
  max-width: 770px;
  width: 100%;
  margin-left: auto;
}

.top_pickup .contents_box .subTtl {
  font-size: clamp(22px, 20.058px + 0.518vw, 30px);
  text-align: center;
}

.top_pickup .contents_box .subTtl .line {
  background: linear-gradient(transparent 60%, #dbdbdb 0%);
  line-height: (42/30);
  text-shadow: -1px -1px 7px white, 1px -1px 7px white, -1px 1px 7px white, 1px 1px 7px white;
}

.top_pickup .contents_box .mainTtl {
  text-align: center;
}
.top_pickup .contents_box .mainTtl .ttl {
  font-size: clamp(26px, 20.660px + 1.424vw, 48px);
  display: block;
  text-shadow: -1px -1px 8px white, 1px -1px 8px white, -1px 1px 8px white, 1px 1px 8px white;
}
.top_pickup .contents_box .mainTtl .ttl.first {
  position: relative;
  margin-bottom: 30px;
}
.top_pickup .contents_box .mainTtl .ttl.first:after {
  content: "";
  background: url(img/top_pickup_icon.png) no-repeat center / cover;
  width: clamp(20px, 18.058px + 0.518vw, 28px);
  height: 28px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.top_pickup .txt_box {
  text-shadow: -1px -1px 8px white, 1px -1px 8px white, -1px 1px 8px white, 1px 1px 8px white;
}
.top_pickup .txt_box p {
  font-size: clamp(16px, 15.272px + 0.194vw, 19px);
}
.top_pickup .txt_box  {
  text-align: center;
}
@media ( min-width : 768px ) {
  .top_pickup .button_list {
    display: flex;
    justify-content: center;
    gap: 0 20px;
  }
  .top_pickup .button_list li {
    max-width: 460px;
    width: 100%;
  }
  .top_pickup .button_list li a {
    width: 100%;
  }
}
@media ( max-width : 1224px ) {
  .top_pickup .button_list {
    flex-direction: column;
    align-items: center;
  }
  .top_pickup .button_list li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.top_pickup .button_list {
  margin-top: clamp(20px, 15.146px + 1.294vw, 40px);
}
.top_pickup .button_list li a {
  font-size: clamp(20px, 16.602px + 0.906vw, 34px);
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media ( max-width : 767px ) {
  .top_pickup .button_list li a {
    height: 100px;
    width: 90%;
    margin: auto;
  }
}
.top_pickup .button_list .btn-style a:after {
  width: 30px;
}
.top_pickup .button_list li a .wrap {
  font-size: clamp(17px, 15.786px + 0.324vw, 22px);
  font-weight: normal;
}
@media ( min-width : 768px ) {
  .pcbr {
    display: block!important;
  }
}
/* 下層 */
