@charset "UTF-8";

.botan_top01 {
  overflow: hidden;
}

/* シャイン用の擬似要素 */
.botan_top01::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
  /* ← 2.5秒光 + 1秒休憩 */
}

/* アニメーション定義 */
@keyframes shine {
  0% {
    left: -75%;
  }

  70% {
    left: 125%;
  }

  100% {
    left: 125%;
    /* 1秒分の待機 */
  }
}





#att {
  position: absolute;
  bottom: 0;
  right: 2%;
  opacity: 0.8;
  z-index: 100;
}

@media(max-width: 640px) {
  #att {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 2%;
    opacity: 0.8;
  }

}

#wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

#wrapper-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 109px;
  text-align: center;
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 15px;
}

.arrow-down:after {
  content: '';
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #b91a2f;
  border-right: 2px solid #b91a2f;
  behavior: url(-ms-transform.htc);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
  /* ← これで縦書きになります */
  padding-bottom: 10px;
}

@media(max-width: 640px) {
  #scroll-title {
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-family: Helvetica Neue, Helvetica, Arial;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    /* ← これで縦書きになります */
    padding-bottom: 10px;
    padding-right: 10px;
  }
}

#scroll-down::before {
  -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Safari 4+ */

  -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Fx 5+ */

  -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Opera 12+ */

  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* IE 10+, Fx 29+ */

  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -1px;
  width: 1px;
  height: 80px;
  background: #fff;
  content: ' ';
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}

@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}




@media(max-width: 640px) {
  .brsm {
    display: block;
  }
}

footer {
  background-color: #F3EEE6;
}

footer a {
  color: #333;
}

.nav_foot li a {
  color: #333 !important;
}

footer a:hover {
  color: #333;
}

footer .ft-list h5 {
  color: #333;
}

.footlogo {
  color: #333;
}

.blue-bold {
  font-weight: bold;
  color: #004178;
}

.bk-orange {
  background: #ff9834 !important;
}

.headTitle span,
.headTitle2 span,
.headTitle22 span,
.midasi-sen {
  border-bottom: #004178 2px solid !important;
}

h2,
.sub-h3,
.sub-h4 {}

.midasi-sen span {
  color: #000;
}

.contact-section .headTitle {
  color: #fff !important;
}

.contact-link a {
  color: #FFFFFF !important;
}

.contact-link a:hover {
  color: #FFFFFF !important;
}

.contact-link a:visited {
  color: #FFFFFF !important;
}

.head_bt a,
.head_bt2 a,
.head_bt3 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.head_bt:hover,
.head_bt2:hover,
.head_bt3:hover {
  background-color: #2F405A !important;
}
.head_bt2 a {
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.head_bt2:hover a {
  color: #fff !important;
}
.head_bt2_img {
  position: absolute;
  top: -35px;
  right: 1px;
  width: 60px;
  height: auto;
  z-index: 101;
  pointer-events: none;
  transition: .3s;
}

.sp-slide .pr_list {
  width: 90%;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .sp-slide .pr_list {
    margin-bottom: 20px;
  }
}

.sp-slide .pr_list .img img {
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
}

.contact-section .tel {
  color: #fff !important;
}

.contact-section .fax {
  color: #fff !important;
}

.contact-section .tel a:link {
  color: #fff !important;
}

.contact-section .fax a:link {
  color: #fff !important;
}

/* ============================================
   インタビューカード専用調整
   ============================================ */
.interview-card_body {
  padding: 20px 30px 20px !important; /* 上下の余白を減らす */
  height: auto !important; /* pc.cssのheight:350pxを上書きして高さを自動に */
  min-height: auto !important;
}
.interview-card_body .interview_meta {
  margin-bottom: 0 !important;
}
.interview-card_body .interview_name {
  margin-bottom: 5px !important;
}
.interview-card_body .interview_year {
  margin-bottom: 2px !important;
}
.interview-card_body .slider-card_btn {
  margin-top: 10px !important;
  bottom: 15px !important; /* ボタンの位置も少し上げる */
}

/* ページトップへ　画像サイズ------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 55px;
  right: 20px;
  width: 50px;
  z-index: 100;
}

#pageTop img {
  width: 100%;
  height: auto;
}

@media(max-width: 640px) {
  #pageTop {
    position: fixed;
    bottom: 50px;
    right: 5px;
    width: 30px;
    z-index: 100;
  }
}

/* フットバナー------------------------------------------------------*/
.footbana {
  line-height: 50px;
  z-index: 50;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: 40px;
}

.footbana .bana01 {
  padding-top: 10px;
  width: 50%;
  height: 100%;
  float: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

.footbana .bana01 img {
  width: 30px;
  height: auto;
  padding-right: 10px;
}

.footbana .bana02 {
  padding-top: 10px;
  width: 50%;
  height: 100%;
  float: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-left: #FFFFFF 1px solid;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.footbana .bana02 img {
  width: 15px;
  height: auto;
  padding-right: 10px;
}

/*ボタン１------------------------------------------*/
.a_link,
.a_link::before,
.a_link::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.a_link {
  position: relative;
  z-index: 2;
  color: #333;
  border-bottom: #f8f3f1 0px solid;
}

.a_link:hover {
  color: #847a46;
  margin-left: 5px;
  border-bottom: #847a46 1px solid;
}

.button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button {
  display: inline-block;
  max-width: 600px;
  width: 90%;
  height: 60px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-size: 22px;
  background-color: #FFFFFF;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button:hover span {
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.button {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: #ccc 1px solid;
}

.button:hover {
  color: #847a46;
  padding-left: 20px;
  border: #f8f3f1 1px solid;
}

.button:hover span {
  display: block;
  width: 8px;
  height: 14px;
  background-image: url(../../images/yaji.jpg);
  background-repeat: no-repeat;
  top: 23px;
  left: 1%;
  margin-left: 4%;
  position: absolute;
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.button span {
  display: block;
  width: 8px;
  height: 14px;
  background-image: url(../../images/yaji.jpg);
  background-repeat: no-repeat;
  top: 23px;
  left: 1%;
  margin-left: 0%;
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button:hover::after {
  background: #f8f3f1;
  opacity: 0.4;
}

.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button2 {
  display: inline-block;
  max-width: 350px;
  width: 90%;
  height: 60px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  font-size: 22px;
  color: #fff;
}

.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button2:hover span {
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.button2 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: #fff 1px solid;
}

.button2:hover {
  color: #fff;
  border: #fff 1px solid;
}

.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button2:hover::after {
  background: #fff;
  opacity: 0.4;
}

.left {
  float: left;
}

.right {
  float: right;
}

.txt_R {
  text-align: right !important;
}

.txt_L {
  text-align: left !important;
}

.txt_C {
  text-align: center;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mr60 {
  margin-right: 60px;
}

.mr70 {
  margin-right: 70px;
}

.mr80 {
  margin-right: 80px;
}

.mr90 {
  margin-right: 90px;
}

.mr100 {
  margin-right: 100px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.ml60 {
  margin-left: 60px;
}

.ml70 {
  margin-left: 70px;
}

.ml80 {
  margin-left: 80px;
}

.ml90 {
  margin-left: 90px;
}

.ml100 {
  margin-left: 100px;
}

.ma10 {
  margin: 10px;
}

.ma20 {
  margin: 20px;
}

.ma30 {
  margin: 30px;
}

.ma40 {
  margin: 40px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb100 {
  padding-bottom: 100px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

@media screen and (max-width: 1160px) {
  .pt50 {
    padding-top: 30px;
  }
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr30 {
  padding-right: 30px;
}

.pr40 {
  padding-right: 40px;
}

.pr50 {
  padding-right: 50px;
}

.pr60 {
  padding-right: 60px;
}

.pr70 {
  padding-right: 70px;
}

.pr80 {
  padding-right: 80px;
}

.pr90 {
  padding-right: 90px;
}

.pr100 {
  padding-right: 100px;
}

.pl10 {
  padding-left: 10px;
}

.pl20 {
  padding-left: 20px;
}

.pl30 {
  padding-left: 30px;
}

.pl40 {
  padding-left: 40px;
}

.pl50 {
  padding-left: 50px;
}

.pl60 {
  padding-left: 60px;
}

.pl70 {
  padding-left: 70px;
}

.pl80 {
  padding-left: 80px;
}

.pl90 {
  padding-left: 90px;
}

.pl100 {
  padding-left: 100px;
}

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p15 {
  padding: 15px;
}

.p20 {
  padding: 20px;
}

.p25 {
  padding: 25px;
}

.p30 {
  padding: 30px;
}

.p35 {
  padding: 35px;
}

.p40 {
  padding: 40px;
}

.p45 {
  padding: 45px;
}

.p50 {
  padding: 50px;
}

.pt-20 {
  padding-top: -20px;
}

@media screen and (max-width: 640px) {
  .spt20 {
    padding-top: 20px;
  }

  .spt-20 {
    margin-top: -30px !important;
  }
}

/*padding:::::::::::::::::::::::::::::::::::::::::::::*/
.pad_l1 {
  padding-left: 3%;
}

.pad_t1 {
  padding-top: 1%;
}

.pad_b1 {
  padding-bottom: 1%;
}

.pad_t2 {
  padding-top: 2%;
}

.pad_b2 {
  padding-bottom: 2%;
}

.pad_t3 {
  padding-top: 3%;
}

.pad_b3 {
  padding-bottom: 3%;
}

.pad_t4 {
  padding-top: 4%;
}

.pad_b4 {
  padding-bottom: 4%;
}

.pad_t5 {
  padding-top: 5%;
}

.pad_b5 {
  padding-bottom: 5%;
}

@media screen and (max-width: 640px) {
  .pad_t5 {
    padding-top: 10%;
  }

  .pad_b5 {
    padding-bottom: 10%;
  }

  .pad_b10_sp {
    margin-bottom: 15%;
  }
}

.pad_t7 {
  padding-top: 7%;
}

.pad_b7 {
  padding-bottom: 7%;
}

.pad_t10 {
  padding-top: 10%;
}

.pad_t11 {
  padding-top: 120px;
  padding-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .pad_t11 {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.pad_t15 {
  padding-top: 15%;
}

.pad_b10 {
  padding-bottom: 10%;
}

.pad_t20 {
  padding-top: 20%;
}

.pad_b20 {
  padding-bottom: 20%;
}

.pad_l10 {
  padding-left: 10%;
}

.pad_l20 {
  padding-left: 20%;
}

.pad_l25 {
  padding-left: 25%;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(47, 64, 94, .7);
  -webkit-transition: .3s;
  transition: .3s;
}

.layer:hover {
  background: rgba(0, 19, 48, .5);
}

.layer .linkarea {
  position: absolute;
  top: 30px;
  left: 104px;
  width: 100%;
  height: 100%;
}

.bg-img-box:hover .bg-img-box-bgImg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.bg-img-box:hover {
  background-color: rgba(0, 0, 0, .3);
}

.bg-img-box-bgImg {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  transition-duration: 20s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.bg-img-box-header {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  text-align: left;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* background-image: url(../../images/repeat0.jpg);
	background-repeat:repeat;*/
  padding: 5% 0 5% 0;
  color: #fff;
  transition-duration: 20s;
}

.bg-img-box-header a {
  display: block;
  width: 100%;
}

.bg-img-box-header {
  transition: 0.4s ease-in-out;
  opacity: 0.9;
}

.bg-img-box-header:hover {
  /*background-image: url(../../images/repeat0.jpg);
	background-repeat:repeat;*/
  transition: 0.4s ease-in-out;
  opacity: 0.7;
}

/*
.bg-img-box-header a:link{
	color:#000;}
.bg-img-box-header a:hover{
	color:#000;}


.bg-img-box-header a {
	letter-spacing: .2rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.bg-img-box-header a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.bg-img-box-header a:hover::after {
  transform: scale(1, 1);
}
*/
.bg-img-box {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.bg-img-box-bgImg {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

/*背景画像*/
.bk001 {
  /*background-image: url(../../images/repeat2.jpg);*/
  background-color: #000;
  color: #fff;
  background-repeat: repeat;
}

.bk002 {
  /*background-image: url(../../images/repeat2.jpg);*/
  background-color: #000;
  color: #fff;
  background-repeat: repeat;
}

.bk003 {
  background-image: url(../../images/repeat3.jpg);
  background-repeat: repeat;
}

.bk004 {
  background-image: url(../../images/repeat4.jpg);
  background-repeat: repeat;
}

.bk005 {
  background-image: url(../../images/repeat5.jpg);
  background-repeat: repeat;
}

.bk006 {
  background-image: url(../../images/repeat6.jpg);
  background-repeat: repeat;
}

.bk010 {
  background-image: url(../../images/haikei1.jpg);
  background-size: cover;
}

.bk-flow {
  background-size: cover;
}

.bk-main {
  background-image: url(../../images/bk-main.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
}

.bk-main2 {
  background-color: #e8ecf3;
}

.bk-gray {
  background-color: #f4f4f4;
}

/*リンク画像*/
.link:hover {
  background-color: #fff;
  transition: 0.6s ease-in-out;
  opacity: 0.5;
}

.link {
  transition: 0.6s ease-in-out;
  opacity: 1;
}

.link-gazo:hover {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.link-gazo :hover {
  background: rgba(255, 255, 255, .3);
  -webkit-transition: .3s;
  transition: .3s;
}

.link-gazo {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  transition-duration: 10s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

/*共通*********************************/
.img-w100 img {
  width: 100%;
  height: auto;
}

.new-box {
  width: 90%;
  margin: auto;
}

@media screen and (min-width: 640px) {
  .box-left {
    text-align: left;
  }
}

.bold {
  font-weight: bold;
}

.txt-read-box {
  margin: auto;
  width: 90%;
  text-align: left;
  line-height: 2;
}

.txt-read {
  margin: auto;
  text-align: left;
  line-height: 2;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .new-box {
    width: 90%;
    margin: auto;
  }

  .txt-box {
    width: 90%;
    margin: auto;
    line-height: 2;
  }

  .tab-no {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .new-box {
    width: 90%;
    margin: auto;
  }

  .txt-box {
    width: 90%;
    margin: auto;
    text-align: left;
    line-height: 2;
  }

  .sp-br-no {
    display: none;
  }

  .txt-read-spbox {
    margin: auto;
    width: 90%;
    text-align: left;
    line-height: 2;
  }
}

.footpad {
  margin: 150px 0 0 0;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .footpad {
    margin: 100px 0 0 0;
  }
}

@media screen and (max-width: 640px) {
  .footpad {
    margin: 70px 0 0 0;
  }
}

.cont-products {
  max-width: 1600px;
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
}

.cont-title {
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
}

.contmap {
  max-width: 100%;
  width: 100%;
  height: 450px;
  display: block;
  position: relative;
  clear: both;
  background-color: #D7D7D7;
}

@media screen and (max-width: 640px) {
  .contmap {
    height: 400px;
  }
}

.cont1600 {
  max-width: 1600px;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.cont1400 {
  width: 100% !important;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.sec_cont {
  width: 100%;
}

.cont1440 {
  max-width: 1440px;
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  margin: 0 auto;
}

.cont1200 {
  max-width: 1200px;
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  margin: 0 auto;
}

.cont1000 {
  max-width: 1000px;
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  margin: 0 auto;
}

.cont1200-voice {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.full-img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
}

.full-img img {
  width: 100%;
  height: auto;
}

.cont800 {
  max-width: 800px;
  width: 90%;
  height: 100%;
  display: block;
  position: relative;
  clear: both;
}

.title-column .sen {
  margin: auto;
  display: block;
  width: 100%;
  border-top: #ccc 1px solid;
  padding-bottom: 0px;
}

.cont1200 .sen,
.cont1200-2 .sen {
  margin: auto;
  display: block;
  width: 100%;
  border-top: #ccc 1px solid;
  padding-bottom: 0px;
}

.ilust-img {
  margin: auto;
  display: block;
  width: 75%;
  max-width: 500px;
}

.ilust-img img {
  width: 100%;
  height: auto;
}

.qa .sub-h4 {
  margin: auto;
  display: block;
  width: 100%;
  border-bottom: #ccc 2px solid;
  padding-bottom: 0px;
  position: relative;
}

.qa .sub-h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #000000;
  bottom: -2px;
  width: 30%;
}

.hyo dt,
.hyo dd {
  overflow: hidden;
  white-space: nowrap;
  float: left;
}

.hyo {
  width: 100%;
  text-align: left;
}

.shohin-list-2 p {
  line-height: 2;
}

@media screen and (min-width: 640px) {
  .mt100-spno {
    margin-top: 100px;
    clear: both;
  }

  .pt100-spno {
    margin-top: 100px;
    clear: both;
  }

  .pt50-spno {
    margin-top: 50px;
    clear: both;
  }

  .shohin-list-2 img {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .pt100-spno {
    margin-top: 50px;
    clear: both;
  }

  .pt50-spno {
    margin-top: 0px;
    clear: both;
  }

  .shohin-list-2 img {
    width: 60%;
    height: auto;
  }
}

@media screen and (min-width: 640px) {
  .store .sp {
    display: none;
  }
}

/*フォーム******************************************/
.form dt,
.form dd {
  overflow: hidden;
  white-space: nowrap;
  float: left;
  font-size: 16px;
}

.form {
  width: 100%;
  text-align: left;
}

.form input[type="text"] {
  border: 0;
  padding: 15px 20px;
  width: 300px;
  height: 40px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  display: block;
  font-size: 16px;
}

.form dt span {
  border: 1px #6A0305 solid;
  padding: 5px;
  color: #6A0305;
  position: absolute;
  right: 10%;
  top: 45px;
  font-size: 12px;
}

.form select {
  border: 0;
  padding: 15px 20px;
  width: 300px;
  height: 60px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  display: block;
  font-size: 16px;
  color: #666;
}

.form textarea {
  border: 0;
  padding: 15px 20px;
  width: 90%;
  height: 200px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  display: block;
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .form input[type="text"] {
    border: 0;
    padding: 15px 20px;
    width: 100%;
    height: 40px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 0 0 0;
    display: block;
  }

  .form dt span {
    border: 1px #6A0305 solid;
    padding: 5px;
    color: #6A0305;
    position: absolute;
    right: 10%;
    top: 45px;
    font-size: 12px;
  }
}

.chkbox {
  text-align: center;
  margin: 60px auto 0 auto;
}

.chkbox a {
  border-bottom: 1px solid #ccc;
}

.chkbox label {
  padding-left: 38px;
  line-height: 24px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.chkbox label:before {
  border: 1px solid #ccc;
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #fff;
  border-radius: 2px;
}

.chkbox input[type=checkbox] {
  display: none;
}

.chkbox input[type=checkbox]:checked+label:before {
  content: '\2713';
  font-size: 24px;
  color: #fff;
  background-color: #d4c391;
}

/*エラー***************************/
span.error input,
span.error textarea,
span.error select,
span.error label {
  background: #FFCCCC !important;
}

* html span.error label {
  background: none;
}

*+html span.error label {
  background: none;
}

span p.error {
  position: absolute;
  padding: 0;
  margin: 5px 0 0 20px;
  color: red;
  font-size: 11px;
  padding-bottom: 5px;
}

.pt25 {
  padding-top: 25px;
}

@media screen and (max-width: 640px) {
  .pt25 {
    padding-top: 0px;
    font-weight: bold;
  }
}

.white_shadow {
  text-shadow: #FFFFFF 1px 1px 2px, #FFFFFF 1px 1px 2px, #FFFFFF 1px 1px 2px, #FFFFFF 1px 1px 2px !important;
}

.ninki-op {
  text-align: center;
  margin: 0 auto;
  max-width: 730px;
  width: 100%;
  margin-bottom: 30px;
}

.ninki-op img {
  height: auto;
  width: 100%;
}

/*フォーム******************************************/
.bk-glay {
  background-color: #f4f4f4;
  width: 94%;
  padding: 3%;
  margin: auto;
}

.bk-glay img {
  width: 100%;
  height: auto;
}

.inv03 {
  animation-name: anime1;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
}

@keyframes anime1 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.anime1 {
  opacity: 0;
}

.anime1-mv {
  animation-name: anime1;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
}

@keyframes anime1 {
  0% {
    opacity: 0;
    transform: translatex(30px);
  }

  100% {
    opacity: 1;
    transform: translatex(0);
  }
}

.anime2 {
  opacity: 0;
  filter: blur(30px);
  /* 10pxのぼかしを適用 */
  transition: opacity 0.7s ease-out, filter 0.7s ease-out;
}

.anime2-mv {
  animation-name: anime2;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
  filter: blur(0px);
  /* ブラーをなくす */
}

@keyframes anime2 {
  0% {
    opacity: 0;
    transform: translatey(30px);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
  }
}

.anime22 {
  opacity: 0;
  filter: blur(60px);
  /* 10pxのぼかしを適用 */
  transition: opacity 1s ease-out, filter 1s ease-out;
}

.anime22-mv {
  animation-name: anime22;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
  filter: blur(0px);
  /* ブラーをなくす */
}

@keyframes anime22 {
  0% {
    opacity: 0;
    transform: translatey(30px);
    transform: scale(1.2, 1.2);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
    transform: scale(1, 1);
  }
}

.anime3 {
  opacity: 0;
}

.anime3-mv {
  animation-name: anime3;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
}

@keyframes anime3 {
  0% {
    opacity: 0;
    transform: translatey(-30px);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
  }
}

.anime33 {
  opacity: 0;
}

.anime33-mv {
  animation-name: anime33;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
}

@keyframes anime33 {
  0% {
    opacity: 0;
    transform: translatey(-30px);
    transform: scale(1.2, 1.2);
  }

  100% {
    opacity: 1;
    transform: translatey(0);
    transform: scale(1, 1);
  }
}

.anime4 {
  opacity: 0;
}

.anime4-mv {
  animation-name: anime4;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
}

@keyframes anime4 {
  0% {
    opacity: 0;
    transform: translatex(-30px);
  }

  100% {
    opacity: 1;
    transform: translatex(0);
  }
}

.zimg {
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: animation 15s linear infinite 0s;
  -moz-animation: animation 15s linear infinite 0s;
  -o-animation: animation 15s linear infinite 0s;
  -ms-animation: animation 15s linear infinite 0s;
  animation: animation 15s linear infinite 0s;
}

@keyframes animation {
  0% {
    opacity: 0;
    transform: scale(1);
    animation-timing-function: ease-in;
  }

  10% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  28% {
    opacity: 1;
  }

  33.33333333333% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0
  }
}

.zimg2 {
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: animation2 15s linear infinite 5s;
  -moz-animation: animation2 15s linear infinite 5s;
  -o-animation: animation2 15s linear infinite 5s;
  -ms-animation: animation2 15s linear infinite 5s;
  animation: animation2 15s linear infinite 5s;
}

@keyframes animation2 {
  0% {
    transform: scale(1.03);
    opacity: 1;
    animation-timing-function: ease-in;
  }

  10% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  28% {
    opacity: 1;
  }

  33.33333333333% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0
  }
}

.zimg3 {
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: animation3 15s linear infinite 10s;
  -moz-animation: animation3 15s linear infinite 10s;
  -o-animation: animation3 15s linear infinite 10s;
  -ms-animation: animation3 15s linear infinite 10s;
  animation: animation3 15s linear infinite 10s;
}

@keyframes animation3 {
  0% {
    transform: scale(1);
    opacity: 1;
    animation-timing-function: ease-in;
  }

  10% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  28% {
    opacity: 1;
  }

  33.33333333333% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0
  }
}

.zimg4 {
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: animation4 15s linear infinite 15s;
  -moz-animation: animation4 15s linear infinite 15s;
  -o-animation: animation4 15s linear infinite 15s;
  -ms-animation: animation4 15s linear infinite 15s;
  animation: animation4 15s linear infinite 15s;
}

@keyframes animation4 {
  0% {
    transform: scale(1.1);
    opacity: 1;
    animation-timing-function: ease-in;
  }

  10% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  28% {
    opacity: 1;
  }

  33.33333333333% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0
  }
}

/*フッターコンテンツ*********************************/
.foot-box {
  width: 100%;
  height: auto;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

.footer-inner a {
  color: #fff;
}

.footer-inner .logo {
  text-align: center;
  font-size: 30px;
  padding: 20px 0;
}

.footer-inner .copy {
  font-size: 10px;
  text-align: center;
  padding: 20px 0;
}

/*グローバルメニューfoot------------------------------------------*/
#menu_foot {
  display: block;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#menu_foot li {
  display: block;
  float: left;
  margin: 0;
}

@media only screen and (min-width: 1160px) {
  #menu_foot li a {
    display: block;
    padding: 0 10px 0 10px;
    text-align: center;
    text-decoration: none;
    border-right: 1px solid #fff;
    line-height: 100%;
  }

  #menu_foot .top {
    padding: 0;
  }

  #menu_foot .end a {
    border-right: 0 !important;
  }
}

@media only screen and (max-width: 1160px) {
  #menu_foot {
    max-width: 100%;
    border-top: 1px solid #ccc;
  }

  #menu_foot li a:hover {}

  #menu_foot li {
    box-sizing: border-box;
    width: 25%;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin: 0;
  }

  #menu_foot .end {
    width: 50%;
  }

  #menu_foot li a p {
    display: block;
  }

  #menu_foot li img {
    display: none;
  }

  #menu_foot li a {
    display: block;
    padding: 12px 0 10px;
    text-align: center;
  }
}

@media only screen and (max-width: 640px) {
  #menu_foot {
    max-width: 100%;
    border-top: 1px solid #ccc;
  }

  #menu_foot {
    max-width: 100%;
  }

  #menu_foot li {
    width: 50%;
    float: left;
    margin: 0;
  }

  #menu_foot .end {
    width: 100%;
  }

  #menu_foot li a p {
    display: block;
  }

  #menu_foot li a {
    display: block;
    padding: 12px 0 10px;
    text-align: center;
  }
}

.abana-wh {
  color: #333 !important;
  background-color: rgba(255, 255, 255, 1);
}

.sub-head3 ul li:before {
  position: absolute;
  content: '';
  top: 0.5em;
  left: 0.2em;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #143265;
}

.table-scroll {
  overflow: auto;
  white-space: nowrap;
}

/*アニメーションボタン*/
.buttonBox {
  position: relative;
  margin: 10px 0 0 0;
  width: 300px;
  border-bottom: #004178 2px solid;
}

.buttonBox2 {
  position: relative;
  margin: 0 0 0 0;
  width: 100%;
}

.buttonBox3 {
  position: relative;
  margin: 10px 0 0 0;
  width: 250px;
  border-bottom: #004178 2px solid;
}

button {
  width: 100%;
  height: 60px;
  position: relative;
  background: #fff;
  text-transform: uppercase;
  color: #004178;
  font-weight: bold;
  letter-spacing: 0px;
  border: none;
  font-size: 18px;
  outline: none;
  text-align: left;
  padding-left: 10px;
  cursor: pointer;
}

.border {
  position: absolute;
  background: none;
  transition: all .4s ease-in-out;
}

.anime-button>.border:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid #004178;
}

.anime-button>.border:nth-of-type(2) {
  top: 0;
  right: 0;
  width: 10px;
  height: 0;
  border-right: 1px solid #004178;
}

.anime-button>.border:nth-of-type(3) {
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid #004178;
}

.anime-button>.border:nth-of-type(4) {
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 1px solid #004178;
}

.anime-button:hover .border:nth-of-type(1) {
  width: 100%;
}

.anime-button:hover .border:nth-of-type(2) {
  height: 60px;
}

.anime-button:hover .border:nth-of-type(3) {
  width: 100%;
}

.anime-button:hover .border:nth-of-type(4) {
  height: 60px;
}

.button-anime {
  transition: all .4s ease-in-out;
}

.anime-button>.button-anime {
  padding-left: 10px;
}

.anime-button:hover .button-anime {
  padding-left: 30px;
}

.button-anime2 {
  transition: all .4s ease-in-out;
}

.anime-button>.button-anime2 {
  padding-left: 30px;
}

.anime-button:hover .button-anime2 {
  padding-left: 40px;
}

.sankaku {
  transition: all .4s ease-in-out;
  position: absolute;
  top: 25px;
  margin-left: 260px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #004178;
  opacity: 0.2;
}

.anime-button:hover .sankaku {
  margin-left: 250px;
  opacity: 1;
}

.sankaku2 {
  transition: all .4s ease-in-out;
  position: absolute;
  top: 25px;
  right: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #004178;
  opacity: 0.2;
}

.anime-button:hover .sankaku2 {
  right: 20px;
  opacity: 1;
}

/*フッターボタン*/
.anime-button3>.border:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid #004178;
}

.anime-button3>.border:nth-of-type(2) {
  top: 0;
  right: 0;
  width: 10px;
  height: 0;
  border-right: 1px solid #004178;
}

.anime-button3>.border:nth-of-type(3) {
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid #004178;
}

.anime-button3>.border:nth-of-type(4) {
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 1px solid #004178;
}

.anime-button3:hover .border:nth-of-type(1) {
  width: 100%;
}

.anime-button3:hover .border:nth-of-type(2) {
  height: 60px;
}

.anime-button3:hover .border:nth-of-type(3) {
  width: 100%;
}

.anime-button3:hover .border:nth-of-type(4) {
  height: 60px;
}

.button-anime {
  transition: all .4s ease-in-out;
}

.anime-button3>.button-anime {
  padding-left: 10px;
  background: #004178;
  color: #fff;
  border: 2px #fff solid;
}

.anime-button3:hover .button-anime {
  padding-left: 30px;
  background: #fff;
  color: #004178;
}

.sankaku3 {
  transition: all .4s ease-in-out;
  position: absolute;
  top: 24px;
  margin-left: 200px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #fff;
  opacity: 1;
}

.anime-button3:hover .sankaku3 {
  margin-left: 200px;
  border-color: transparent transparent transparent #004178;
  opacity: 1;
}

.kakko03 {
  margin-top: 30px;
  position: relative;
  max-width: 500px;
  width: 90%;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.kakko03::before,
.kakko03::after {
  position: absolute;
  top: 0;
  content: '';
  width: 20px;
  height: 100%;
  border-top: 3px solid #004178;
  border-bottom: 3px solid #004178;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.kakko03::before {
  left: 0;
  border-left: 3px solid #004178;
}

.kakko03::after {
  right: 0;
  border-right: 3px solid #004178;
}

.marker {
  background: linear-gradient(transparent 60%, #27d5fd 0%);
  display: inline-block;
  padding: 0 20px 0 20px;
}

.marker2 {
  background: linear-gradient(transparent 85%, #27d5fd 0%);
  display: inline-block;
  padding: 0 20px 0 20px;
}

.mg-midashi {
  margin: 40px auto;
}

@media screen and (max-width: 640px) {
  .mg-midashi {
    margin: 30px auto;
  }
}

.hyo dt {
  border-bottom: 2px solid #004178 !important;
}

.h3-border {
  padding: 20px 0 !important;
  color: #000;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.circle {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #004178;
  color: #004178;
  font-weight: bold;
  font-size: 18px;
}

.circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 90px;
  text-align: center;
  color: #004178;
}

.circle2 {
  position: relative;
  display: inline-block;
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #004178;
  color: #004178;
  font-weight: bold;
  font-size: 18px;
  margin-right: 20px;
}

.circle2 span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  text-align: center;
  color: #004178;
}

.pt0 {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/*サイトマップ*/
.nav {
  display: block;
  max-width: 800px;
  margin: auto;
  width: 90%;
  padding: 10px 0;
}

.nav li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  text-align: left;
}

.nav li ul li {
  display: block;
  width: 100%;
  border-bottom: 0px dotted #ccc;
  padding: 10px 0;
  text-indent: 2em;
}

.nav li ul li ul li {
  display: block;
  width: 100%;
  border-bottom: 0px dotted #ccc;
  padding: 10px 0;
  text-indent: 3em;
}

.ft-list1 a img {
  text-align: center;
  max-width: 260px;
  width: 70%;
  height: auto;
  padding: 4px 7px 0 0;
}

@media screen and (max-width: 640px) {
  .ft-list1 a img {
    text-align: center;
    float: none;
    max-width: 250px;
    width: 70%;
    height: auto;
    padding: 0;
  }
}

@media screen and (min-width: 1160px) {
  #gnav li a span {
    margin-left: 10px;
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
  }

  /* 十字のデフォルトスタイル */
  #gnav li a span::after,
  #gnav li a span::before {
    content: '';
    position: absolute;
    background-color: #074076;
    transition: all 0.3s ease;
  }

  /* 横線 */
  #gnav li a span::after {
    width: 14px;
    /* 横線の長さ */
    height: 2px;
    /* 横線の太さ */
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  /* 縦線 */
  #gnav li a span::before {
    width: 2px;
    /* 縦線の太さ */
    height: 14px;
    /* 縦線の長さ */
    top: 50%;
    right: 6px;
    /* 横線の中央に配置 */
    transform: translateY(-50%);
  }

  /* ホバー時に横線だけ表示 */
  #gnav li:hover a span::before {
    height: 0;
  }
}

/* TOPボタン　アニメーション */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }

  50% {
    left: 0;
    right: auto;
    width: 100%;
  }

  51% {
    left: auto;
    right: 0;
    width: 100%;
  }

  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }

  50% {
    left: 0;
    width: 100%;
  }

  51% {
    left: 0;
    width: 100%;
  }

  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes passing-txt2 {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes passing-txt2 {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes passing-txt3 {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes passing-txt3 {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* css */
.passing .passing-box {
  display: block;
  text-align: left;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  /* 任意の値 */
  background: #163B80;
}

.passing .passing-txt {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /*background: #1F4A7F;*/
  font-size: 3.8rem;
  font-weight: bold;
  padding: 5px 0;
  /* 任意の値 */
}

.passing .passing-txt2 {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* 任意の値 */
}

.passing .passing-txt3 {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /*background: #1F4A7F;*/
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 0;
  /* 任意の値 */
}

.passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease-out 0s 1 normal forwards;
  animation: passing-bar 1s ease-out 0s 1 normal forwards;
  animation-delay: .5s;
}

.passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation-delay: 1s;
}

.passing.move .passing-txt2 {
  -webkit-animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation-delay: 1s;
}

.passing.move .passing-txt3 {
  -webkit-animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation: passing-txt 0s ease-out .5s 1 normal forwards;
  animation-delay: 1s;
}

.vertical-text {
  writing-mode: vertical-rl;
  /* 右から左へ縦書き */
}

.sp-slide img {
  z-index: 1 !important;
}

.main_bk_box {
  display: block;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.main_bk_box img {
  width: 100% !important;
  opacity: 0.8;
}

.main_title_box {
  display: block;
  height: auto;
  text-align: right;
  position: absolute;
  bottom: 0%;
  right: 2%;
  padding: 0px;
  z-index: 10;
  text-shadow: 1px 2px 3px #fff;
}

.main_title_box .title {
  max-width: 1200px;
  width: 50%;
  height: auto;
}

.black {
  color: #333;
}

.m_box {
  display: block;
  width: 70%;
  text-align: left;
  position: absolute;
  left: 3%;
  bottom: 2%;
  padding: 0px;
  z-index: 10;
  color: #fff;
}

.m_box2 {
  display: block;
  width: 50%;
  text-align: left;
  position: absolute;
  left: calc(3% + 5px);
  bottom: 13%;
  padding: 0px;
  z-index: 10;
  color: #fff;
}

.m_title {
  font-size: 6rem !important;
  font-weight: 700;
  text-shadow: 1px 2px 3px #2F405A;
  /*background-color: rgba(255, 255, 255, 0.7);*/
  letter-spacing: 0rem;
}

.m_read {
  font-size: 2rem !important;
  font-size: 1rem;
  text-shadow: 1px 2px 3px #2F405A;
}

.d1 {
  position: absolute;
  z-index: 1;
  width: 30%;
  top: 70%;
  right: 0;
}

.d1 img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1160px) and (max-width: 1500px) {
  .main_title_box .title {
    font-size: 5rem;
  }

  .m_box {
    width: auto;
    left: 4%;
    right: auto;
    bottom: 8%;
    top: auto;
    text-align: left;
  }

  .m_box2 {
    width: auto;
    left: 4%;
    right: auto;
    bottom: 18%;
    top: auto;
    text-align: left;
  }

  .m_title {
    font-size: 3.5rem !important;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-shadow: 2px 3px 5px rgba(47, 64, 90, 0.8);
  }

  .m_read {
    font-size: 1.5rem !important;
    text-shadow: 1px 2px 4px rgba(47, 64, 90, 0.8);
    line-height: 1.6;
  }
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .main_title_box {
    position: absolute;
    text-align: left;
    bottom: auto;
    top: 130px;
    right: auto;
    left: 5%;
  }

  .main_title_box .title {
    font-size: 5rem;
    max-width: 1200px;
    width: 60%;
  }

  .m_title {
    font-size: 2.8rem !important;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-shadow: 2px 3px 5px rgba(47, 64, 90, 0.8);
  }

  .m_read {
    font-size: 1.3rem !important;
    text-shadow: 1px 2px 4px rgba(47, 64, 90, 0.8);
    line-height: 1.6;
  }

  .m_box_title {
    max-width: 50%;
    width: 50%;
  }

  .m_box {
    width: auto;
    left: 5%;
    right: auto;
    bottom: 10%;
    top: auto;
    text-align: left;
  }

  .m_box2 {
    width: auto;
    left: 5%;
    right: auto;
    bottom: 20%;
    top: auto;
    text-align: left;
  }

  .main_bk_box {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px;
    width: 60%;
    height: 100%;
    z-index: 1;
  }

  .main_bk_box img {
    width: 100% !important;
    opacity: 0.8;
  }

  .d1 {
    width: 30%;
    top: auto;
    bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .main_title_box {
    position: absolute;
    text-align: left;
    bottom: 5%;
    right: auto;
    left: 5%;
  }

  .main_title_box .title {
    font-size: 4rem;
    width: 90%;
  }

  .m_title {
    font-size: 3.2rem !important;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-shadow: 2px 3px 5px rgba(47, 64, 90, 0.8);
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
    max-width: 85%;
  }

  .m_read {
    font-size: 1rem !important;
    text-shadow: 1px 2px 4px rgba(47, 64, 90, 0.8);
    line-height: 1.6;
  }

  .m_box_title {
    max-width: 100%;
    width: 100%;
  }

  .m_box {
    width: auto;
    max-width: 90%;
    left: 5%;
    right: auto;
    bottom: 12%;
    top: auto;
    text-align: left;
  }

  .m_box2 {
    width: auto;
    left: 5%;
    right: auto;
    bottom: 25%;
    top: auto;
    text-align: left;
  }

  .main_bk_box {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px;
    width: 60%;
    height: 100%;
    z-index: 1;
  }

  .main_bk_box img {
    width: 100% !important;
    opacity: 0.8;
  }

  .d1 {
    width: 40%;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
}

.ranking-column {
  z-index: 2;
}

.slide-under {
  padding-top: 100px;
}

.content-block {
  position: relative;
  display: block;
  width: 100%;
  height: 900px;
}

.top-haikei {
  position: absolute;
  display: block;
  width: 100%;
  height: 600px;
  background-color: #f4f4f4;
  top: 0;
  margin-top: 200px;
  z-index: 1;
}

.d2 {
  position: absolute;
  max-width: 300px;
  width: 36%;
  top: 0;
  right: auto;
  left: 0;
}

.d2 img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}

.title-column2 .headTitle2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: left;
}

.title-column2 .subTitle2 {
  padding-top: 10px;
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
}

.top-c-gazo {
  position: absolute;
  display: block;
  width: 36%;
  max-width: 600px;
  height: auto;
  right: 5%;
  top: 0;
  z-index: 2;
}

.top-c-gazo img {
  width: 100%;
  height: auto;
}

.top-menu-list {
  position: relative;
  width: 50%;
  margin: 180px auto 0 6%;
  height: auto;
  display: block;
}

.top-menu-list .menu-list {
  height: auto;
  display: block;
}

.top-menu-list .menu-list li {
  width: 45%;
  float: left;
  box-sizing: border-box;
  height: auto;
  display: block;
  text-align: left;
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
  z-index: 10;
  transition: .2s
}

.top-menu-list .menu-list a {
  display: block;
  /* リンクをブロック要素にする */
  width: 100%;
  /* li全体の幅に合わせる */
  height: 100%;
  /* li全体の高さに合わせる */
  padding: 30px;
}

.top-menu-list .menu-list li:nth-child(even) {
  margin-left: 10%;
}

.round_arrow {
  position: relative;
}

.round_arrow::before {
  /* 背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 3px;
  width: 35px;
  /* 横幅 */
  height: 35px;
  /* 高さ */
  border-radius: 50%;
  /* 角の丸み */
  background: #074076;
  border: 2px solid #074076;
  box-sizing: border-box;
  transition: .2s
}

.round_arrow::after {
  /* くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  transition: .2s
}

.top-menu-list .menu-list li:hover {
  /* 背景の表示設定 */
  opacity: 0.5;
  transition: .2s
}

.top-menu-list .menu-list .round_arrow:hover::before {
  /* 背景の表示設定 */
  content: '';
  background: #fff !important;
  border: 2px solid #074076;
  box-sizing: border-box;
  transition: .2s;
}

.top-menu-list .menu-list .round_arrow:hover::after {
  /* 背景の表示設定 */
  border-top: 3px solid #074076;
  border-right: 3px solid #074076;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .top-haikei {
    height: 700px;
    margin-top: 100px;
  }

  .top-c-gazo {
    width: 36%;
    right: 2%;
    top: 210px;
  }

  .top-menu-list .menu-list li {
    width: 100%;
  }

  .top-menu-list .menu-list a {
    padding: 30px;
  }

  .top-menu-list .menu-list li:nth-child(even) {
    margin-left: 0%;
  }
}

@media screen and (max-width: 640px) {
  .content-block {
    height: 800px;
  }

  .d2 {
    width: 50%;
  }

  .title-column2 .headTitle2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .title-column2 {
    width: 50%;
    padding: 70px 0 40px 2%;
    left: 2%;
  }

  .top-haikei {
    height: 640px;
    margin-top: 100px;
  }

  .top-menu-list {
    position: relative;
    width: 55%;
    margin: 180px auto 0 0%;
  }

  .top-c-gazo {
    width: 36%;
    right: 2%;
    top: 210px;
  }

  .top-menu-list .menu-list li {
    width: 100%;
    font-size: 1.2rem;
  }

  .top-menu-list .menu-list a {
    padding: 25px;
  }

  .top-menu-list .menu-list li:nth-child(even) {
    margin-left: 0%;
  }
}

.list70 {
  display: flex;
  /* Flexboxを有効化 */
  width: 68%;
  box-sizing: border-box;
  padding: 5%;
  float: left;
  text-align: left;
  align-items: center;
  /* 垂直方向の中央揃え */
  justify-content: center;
  /* 水平方向の中央揃え（必要に応じて） */
  border-right: 1px #ccc solid;
}

.list70 img {
  height: 43px;
  width: auto;
  float: left;
  margin-right: 20px;
}

.list70 p {
  line-height: 1.3;
  float: left;
}

.list30 {
  display: flex;
  /* Flexboxを有効化 */
  width: 32%;
  box-sizing: border-box;
  padding: 4% 0% 5% 5%;
  float: left;
  text-align: left;
  align-items: center;
  /* 垂直方向の中央揃え */
  justify-content: center;
  /* 水平方向の中央揃え（必要に応じて） */
}

.list30 img {
  height: 70px;
  width: auto;
  float: left;
  margin-right: 20px;
}

.list30 p {
  line-height: 1.3;
  float: left;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {

  .list70,
  .list30 {
    display: block;
    /* Flexboxを有効化 */
    text-align: center;
  }

  .list70 img,
  .list30 img {
    width: auto;
    float: none !important;
    margin-right: 0px;
  }

  .list70 p,
  .list30 p {
    padding-top: 10px;
    line-height: 1.3;
    float: none !important;
  }
}

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

  .list70,
  .list30 {
    width: 90%;
    display: block;
    /* Flexboxを有効化 */
    text-align: left;
    float: none !important;
    border: none;
    left: 4%;
  }

  .list70 img,
  .list30 img {
    width: auto;
    float: none !important;
    margin-right: 0px;
  }

  .list70 p,
  .list30 p {
    font-size: 1rem;
    padding-top: 10px;
    line-height: 1.3;
    float: none !important;
  }
}

.list100 {
  display: flex;
  /* Flexboxを有効化 */
  width: 100%;
  box-sizing: border-box;
  padding: 5%;
  text-align: left;
  align-items: center;
  /* 垂直方向の中央揃え */
  justify-content: center;
  /* 水平方向の中央揃え（必要に応じて） */
}

.list100 img {
  height: 120px;
  width: auto;
  float: left;
  margin-right: 20px;
}

.list100 p {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
  float: left;
}

.list100 span {
  font-size: 2rem;
  font-weight: bold;
  color: #E70011;
}

@media screen and (max-width: 640px) {
  .list100 p {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .list100 img {
    height: 100px;
    margin-right: 14px;
  }

  .list100 span {
    font-size: 2rem;
    font-weight: bold;
    color: #E70011;
    display: block;
  }
}

.slide .pr_list h4 {
  color: #000;
  transition: 0.2s ease-in-out;
  font-size: 1.3rem;
  padding: 25px 0 5px 0;
  border-bottom: #000 solid 1px;
  margin: 0px 0 10px 0;
}

.slide .pr_list:hover h4 {
  color: #000 !important;
  transition: 0.2s ease-in-out;
}

.slide .pr_list .h5 {
  font-size: 1rem;
}

.cont1200-voice .slide .pr_list h4 {
  font-size: 1.1rem;
}

.cont1200-voice .slide .pr_list .h5 {
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .slide .pr_list .h5 {
    font-size: 1rem;
  }

  .cont1200-voice .slide .pr_list h4 {
    font-size: 1rem;
  }

  .cont1200-voice .slide .pr_list .h5 {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

.slide .pr_list .kakaku {
  font-size: 1.2rem;
}

.table-container {
  overflow-x: auto;
  /* 横スクロールを有効化 */
  width: 100%;
}

.sp-disp {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp-none {
    display: none;
  }

  .sp-disp {
    display: block;
    position: absolute;
    width: 30%;
    bottom: 15%;
    right: 3%;
    z-index: 10;
  }

  .sp-disp img {
    width: 100%;
    height: auto;
  }
}

.list-column .slide .pr_list_sub {
  height: 400px !important;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .list-column .slide .pr_list_sub {
    height: 300px !important;
  }
}

@media screen and (max-width: 640px) {
  .list-column .slide .pr_list_sub {
    height: 300px !important;
  }
}

.kado-maru img {
  border-radius: 10px;
}

.botan_iti {
  position: absolute;
  margin-top: -40px;
  margin-right: 0%;
  margin-left: auto;
  text-align: right;
  right: 0;
}

@media screen and (min-width: 641px) and (max-width: 1280px) {
  .title-column-product {
    text-align: left !important;
  }

  .title-column-product p {
    font-size: 0.9rem !important;
  }

  .botan_iti {
    position: absolute;
    margin-top: -90px;
    margin-right: 5%;
    margin-left: auto;
    text-align: right;
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  .title-column-product {
    text-align: left !important;
  }

  .title-column-product p {
    font-size: 0.9rem !important;
  }

  .botan_iti {
    padding: 10px 0 0 0;
    position: relative;
    margin-top: 0px;
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    right: 0;
  }
}

.button2025 {
  display: inline-block;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  /* 初期の文字色 */
  border: 1px solid #333;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.button2025:hover {
  background-color: #F5A89C;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #F5A89C;
  /* ボーダーも変える */
}

.button2025_l {
  width: 400px;
  max-width: 70%;
  display: inline-block;
  padding: 13px 0px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  /* 初期の文字色 */
  border: 1px solid #333;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.button2025_l:hover {
  background-color: #F5A89C;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #F5A89C;
  /* ボーダーも変える */
}

.button2025_l2 {
  position: relative;
  width: 600px;
  max-width: 100%;
  display: inline-block;
  padding: 15px 0px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  /* 初期の文字色 */
  border: 1px solid #333;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 10px 0;
}

.button2025_l2:hover {
  background-color: #EE9385;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #EE9385;
  /* ボーダーも変える */
}

.button2025_l2_gr:hover {
  background-color: #94CBB1;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #94CBB1;
  /* ボーダーも変える */
}

.button2025_l2 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.button2025_l2 svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: #333;
  /* 塗りつぶしを白に */
  stroke: #333;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.button2025_l2:hover svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: white;
  /* 塗りつぶしを白に */
  stroke: white;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}

.button2025_dial {
  width: 260px;
  max-width: 100%;
  display: inline-block;
  padding: 15px 0px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  /* 初期の文字色 */
  border: 1px solid #333;
  /* 初期のボーダー */
  border-radius: 10px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 10px 0;
}

.button2025_dial:hover {
  background-color: #94CBB1;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #94CBB1;
  /* ボーダーも変える */
}

.button2025_sp-menu {
  margin: 10px auto;
  width: 90%;
  max-width: 90%;
  padding: 15px 0px 15px 0px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  color: #fff !important;
}

.button2025_sp-menu a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.button2025_sp-menu:hover {
  background-color: #ccc;
  /* ホバー時の背景色 */
  color: #fff !important;
}

.sp-menu-haikei-green {
  background-color: #94CBB1;
}

.sp-menu-haikei-pink {
  background-color: #F5A89C;
}

@media screen and (max-width: 640px) {
  .button2025 {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    /* 初期の文字色 */
    border: 1px solid #333;
    /* 初期のボーダー */
    border-radius: 50px;
    /* 丸みをつける */
    background-color: transparent;
    /* 初期の背景を透明 */
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }

  .botan_iti_sp {
    margin-top: 40px;
  }
}

footer .read {
  padding-top: 3px;
  font-size: 0.9rem;
  font-weight: bold;
}

footer .read_l {
  line-height: 1.4;
  padding-top: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}

footer .read_s {
  font-size: 0.7rem;
  line-height: 1.4;
}

footer .read_s2 {
  padding-top: 20px;
  font-size: 0.8rem;
  line-height: 1.6;
}

footer .read_social {
  font-size: 1rem;
  font-weight: bold;
}

.social {
  padding-top: 30px;
  display: block;
  width: 100%;
  padding-left: 20px;
}

.social p {
  padding-top: 5px;
  float: left;
  padding-right: 20px;
}

.social img {
  float: left;
  padding-right: 20px;
  width: 40px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.social img:hover {
  opacity: 0.5;
}

@media screen and (max-width: 640px) {
  .social {
    padding-left: 15px;
  }

  .social p {
    padding-right: 20px;
  }
}

.headTitle-img img {
  width: 70%;
  max-width: 460px;
  height: auto;
}

footer a,
.copyright .list a {
  transition: all 0.3s ease-in-out;
}

footer a:hover,
.copyright .list a:hover {
  color: #EF9486;
}

#main-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

#mainslide {
  margin: 0;
  text-align: left;
  width: 100%;
  height: 100vh !important;
  height: 100dvh !important;
  overflow: hidden !important;
}

#mainslide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 64, 90, 0.5);
  /* RGB + 透明度 */
  z-index: 2;
  /* 表示位置調整 */
  pointer-events: none;
  /* スライダー操作に影響なし */
}

#mainslide .sp-slides {
  position: relative;
  z-index: 1;
  /* オーバーレイより下 */
}

#sliderPro .sp-slide {
  overflow: hidden !important;
  /* 画像がはみ出さないように */
  /* border-radius: 0 30px 30px 0 !important;  スライド全体に角丸を適用 */
}

@media screen and (max-width: 640px) {
  #mainslide {
    text-align: left;
    margin-top: 0px;
    /* Remove top margin to allow full height */
    padding-top: 0px !important;
    overflow: hidden !important;
    border-radius: 0 30px 30px 0 !important;
  }
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  #mainslide {
    text-align: left;
    margin-top: 0px;
    /* Remove top margin to allow full height */
    padding-top: 0px !important;
  }
}

/**QA***********************************/
.qa-container {
  width: 100%;
  margin: auto;
  padding: 0px;
}

.qa-item {
  margin-bottom: 10px;
}

.question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 15px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.question:hover {
  color: #EF9486;
}

.answer {
  display: none;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  /* 上寄せ */
  text-align: left;
}

.circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
}

.q-circle {
  background-color: #94CBB1;
  /* 緑 */
  border: none;
}

.q-circle span,
.a-circle span {
  position: relative;
  top: 11px;
  color: white;
  font-weight: 100;
}

.a-circle {
  background-color: #F5A89C;
  /* 赤 */
  margin-top: 3px;
  /* Aの位置を微調整して上寄せ */
  border: none;
}

.answer-text {
  flex: 1;
}

@media screen and (max-width: 640px) {
  .question {
    font-size: 1rem;
    padding: 5px;
  }

  .answer {
    font-size: 0.9rem;
    padding: 5px;
  }

  .circle {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }

  .q-circle span,
  .a-circle span {
    top: 10px;
  }
}

.flow3 img {
  border-radius: 10px;
}

.flow3 h4 {
  font-size: 1.3rem;
  margin: 10px auto 15px auto !important;
  text-align: center !important;
  width: 70% !important;
  border-bottom: 1px solid #333;
  padding-bottom: 10px !important;
  font-weight: normal !important;
}

.flow3 p {
  line-height: 1.6;
}

@media screen and (max-width: 640px) {
  .flow3 h4 {
    font-size: 1.2rem !important;
  }

  .flow3 p {
    font-size: 0.9rem;
  }
}

.step-circle {
  margin: 30px auto 0px auto;
  width: 80px;
  height: 80px;
  background-color: #f4a29c;
  /* 優しいピンク色 */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .step-circle {
    margin: 20px auto 0px auto;
  }
}

.step-circle span {
  font-size: 14px;
  /* Stepを小さめに */
  top: 10px;
  position: relative;
}

.step-circle strong {
  font-size: 30px;
  /* 1を大きくする */
}

#ranking3 img {
  border-radius: 10px 10px 0 0;
}

#ranking3 .pr_list {
  background: rgba(255, 255, 255, 0.7);
  /* 半透明の白 */
  backdrop-filter: blur(10px);
  /* 背景をぼかす */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
  /* ぼかしを強めて自然な影 */
  border-radius: 0 0 10px 10px;
}

#ranking3 h4 {
  margin: 0px 15px 10px 15px;
}

#ranking3 p {
  margin: 0px 15px 10px 15px;
  padding: 0px 0px 15px 0px;
  line-height: 1.6;
}

/* MESSAGEコンテンツ:::::::::::::::::::::::: */
#message .sp-slide {
  border-radius: 10px !important;
  overflow: hidden !important;
}

#message .sp-image {
  border-radius: 10px !important;
  width: 50% !important;
  height: auto !important;
  padding-bottom: 60px;
  margin: 0 !important;
  left: 0 !important;
  background: rgba(255, 255, 255, 0.7);
  /* 半透明の白 */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px !important;
}

.message h4 {
  text-align: start;
  position: absolute;
  top: 0 !important;
  right: 22% !important;
  font-size: 2rem;
  z-index: 10;
  letter-spacing: 0.9rem;
}

.message p {
  text-align: left;
  display: block;
  width: 40%;
  padding: 100px 5% 100px 15%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.7);
  /* 半透明の白 */
  backdrop-filter: blur(10px);
  /* 背景をぼかす */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
  /* ぼかしを強めて自然な影 */
  border-radius: 10px;
}

@media screen and (max-width: 640px) {
  #message .sp-image {
    width: 70% !important;
    height: auto !important;
    padding-bottom: 0px;
    margin: 0 !important;
    left: 0 !important;
    background: rgba(255, 255, 255, 0.7);
    /* 半透明の白 */
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
  }

  .message h4 {
    text-align: start;
    position: absolute;
    top: 0 !important;
    right: 0% !important;
    font-size: 1.5rem;
    z-index: 10;
    letter-spacing: 0.5rem;
  }

  .message p {
    text-align: left;
    display: block;
    width: 80%;
    height: auto !important;
    position: absolute;
    bottom: auto;
    top: 40%;
    right: 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.7);
    /* 半透明の白 */
    backdrop-filter: blur(10px);
    /* 背景をぼかす */
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
    /* ぼかしを強めて自然な影 */
    border-radius: 10px;
  }
}

@media screen and (max-width: 375px) {
  .message p {
    padding: 70px 5% 30px 15%;
  }

  .message h4 {
    right: 2% !important;
  }
}

@media screen and (min-width: 375px) and (max-width: 420px) {
  .message p {
    padding: 100px 5% 30px 15%;
  }

  .message h4 {
    right: 3% !important;
  }
}

@media screen and (min-width: 420px) and (max-width: 460px) {
  .message p {
    padding: 120px 5% 30px 15%;
  }

  .message h4 {
    right: 5% !important;
  }
}

@media screen and (min-width: 460px) and (max-width: 520px) {
  .message p {
    padding: 140px 5% 30px 15%;
  }

  .message h4 {
    right: 5% !important;
  }
}

@media screen and (min-width: 520px) and (max-width: 640px) {
  .message p {
    padding: 200px 5% 30px 15%;
  }

  .message h4 {
    right: 5% !important;
    font-size: 2rem;
    z-index: 10;
    letter-spacing: 0.5rem;
  }
}

/* MESSAGEコンテンツ:::::::::::::::::::::::: */
@media screen and (max-width: 640px) {
  .cont1200 .list3 {
    margin: auto;
    width: 70%;
    float: none;
  }
}

/* top_botan::::::::::::::::::::::::::::::::::::::::::::::: */
.top_botan {
  position: absolute;
  bottom: 7%;
  left: 5%;
  width: 350px;
  padding: 20px;
  display: block;
  z-index: 99;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  /* 半透明の白 */
  backdrop-filter: blur(10px);
  /* 背景をぼかす */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
  /* ぼかしを強めて自然な影 */
  border-radius: 10px;
  text-align: center;
}

.top_botan span {
  color: #94191B;
  font-size: 2rem;
  padding: 0 5px;
  font-weight: bold;
  text-align: center;
}

.top_botan .botan_top01 {
  margin: 10px auto;
  position: relative;
  width: 300px;
  text-align: center;
  background: #F5A89C;
  color: #fff;
  height: 65px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 65px;
  font-weight: bold;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.top_botan .botan_top01:hover {
  background: #ccc;
}

.top_botan .botan_top01 a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.top_botan .botan_top01 svg {
  margin: auto;
  width: 25px;
  /* 必要なサイズ */
  height: 25px;
  fill: white;
  /* 塗りつぶしを白に */
  stroke: white;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.top_botan .botan_top02 {
  margin: 10px auto;
  position: relative;
  width: 300px;
  text-align: center;
  background: #94CBB1;
  color: #fff;
  height: 65px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 65px;
  font-weight: bold;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.top_botan .botan_top02:hover {
  background: #ccc;
}

.top_botan .botan_top02 a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.top_botan .botan_top02 svg {
  margin: auto;
  width: 25px;
  /* 必要なサイズ */
  height: 25px;
  fill: white;
  /* 塗りつぶしを白に */
  stroke: white;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .top_botan {
    position: absolute;
    bottom: 2%;
    left: 2%;
    width: 300px;
    padding: 20px;
    display: block;
    z-index: 99;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    /* 半透明の白 */
    backdrop-filter: blur(10px);
    /* 背景をぼかす */
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
    /* ぼかしを強めて自然な影 */
    border-radius: 10px;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .top_botan {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -5% auto 20px auto;
    max-width: 400px;
    width: 80%;
    padding: 20px;
    display: block;
    z-index: 99;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    /* 半透明の白 */
    backdrop-filter: blur(10px);
    /* 背景をぼかす */
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
    /* ぼかしを強めて自然な影 */
    border-radius: 10px;
    text-align: center;
  }

  .top_botan .botan_top01,
  .top_botan .botan_top02 {
    width: 90%;
    height: 50px;
    line-height: 50px;
    font-size: 1rem;
  }
}

/*MODAL****************************************/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: #FCFAF7;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  transform: translateY(-50px) scale(0.8);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  max-height: 90vh;
  /* 最大高さを90%のビューポートに設定 */
  overflow-y: auto;
  /* コンテンツがオーバーフローしたら縦スクロールを表示 */
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modalimg {
  width: 48%;
  float: left;
  margin-right: 5%;
  display: block;
  margin-top: 15px;
}

.modal img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

.text-content {
  width: 47%;
  margin-top: 15px;
  text-align: left;
  display: block;
  height: 100%;
  float: right;
}

.text-content h2,
.text-content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .modalimg {
    width: 48%;
    float: left;
    margin-right: 2%;
    display: block;
    height: 100%;
  }

  .modal img {
    width: 100%;
    height: auto;
  }

  .modal-content {
    width: 90%;
    padding: 15px;
  }

  .text-content h2,
  .text-content h3 {
    font-size: 18px;
  }

  .text-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .close {
    font-size: 18px;
    top: 5px;
    right: 10px;
  }

  .text-content .button2025_l {
    width: 400px;
    max-width: 100%;
    display: inline-block;
    padding: 5px 0px;
  }
}

@media (max-width: 640px) {

  .close {
    position: absolute;
    top: -10px;
    right: suto;
    left: 5px;
    font-size: 30px;
    cursor: pointer;
  }

  .modalimg {
    width: 90%;
    float: none;
    margin-right: 0;
    display: block;
    margin: auto;
    height: 100%;
  }

  .modal-content {
    width: 75%;
    padding: 15px;
  }

  .text-content {
    width: 90%;
    padding: 15px;
  }

  .text-content h2,
  .text-content h3 {
    font-size: 16px;
  }

  .text-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .text-content p br {
    display: none;
  }

  .text-content a {
    width: 100% !important;
  }
}

.pan-container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.shohin-container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  /* 背景をぼかす */
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);
  /* ぼかしを強めて自然な影 */
  border-radius: 10px;
  overflow: hidden;
}

.shohin-container img {
  width: 100%;
  height: auto;
  display: block;
}

/*MODAL****************************************/
.breadcrumb {
  font-size: 14px;
  margin: 10px 0;
}

@media (max-width: 640px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #F5A89C;
}

.breadcrumb li+li::before {
  content: ">";
  padding: 0 8px;
  color: #888;
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #F5A89C;
}

/*MODAL****************************************/
.tab-container {
  width: 100%;
  margin: 0 auto;
}

.tabs {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
}

.tab {
  padding: 15px 150px;
  border: 1px solid #ccc;
  border-bottom: none;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .tab {
    padding: 15px 100px;
  }
}

@media screen and (max-width: 640px) {
  .tab {
    padding: 15px 35px;
  }
}

.tab:not(:last-child) {
  margin-right: 10px;
}

.tab.active {
  border-top: 4px solid #F5A89C;
}

.tab-content-wrap {
  position: relative;
  min-height: 100px;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.tab-content.active {
  display: block;
  opacity: 1;
  position: relative;
}

@media screen and (min-width: 640px) and (max-width: 1160px) {
  .cont-products .list3 {
    width: 47%;
    padding: 1.5% 1.5% 30px 1.5%;
  }
}

@media screen and (max-width: 640px) {
  .cont-products .list3 {
    width: 80%;
    padding: 30px 0 30px 10%;
    margin: auto;
  }

  .cont-products .list3 h4 {
    width: 100%;
  }

  .cont-products .list3 p {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
  }
}

.info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  font-family: sans-serif;
  font-size: 1rem;
}

.link-text {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  color: #000;
}

.link-text svg {
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
}

@media (max-width: 640px) {
  .info-wrap {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem;
  }
}

.divider {
  width: 1px;
  height: 1.2em;
  background-color: #ccc;
}

@media (max-width: 870px) {
  .divider {
    display: none;
  }
}

.list222 {
  display: block;
  float: left;
  width: 44%;
  padding: 0 3% 0 3%;
}

@media (max-width: 640px) {
  .list222 {
    display: block;
    float: none;
    width: 90%;
    padding: 10px 5% 10px 5%;
  }
}

.search-form {
  margin: auto;
  margin-top: 10px;
  display: flex;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  font-family: sans-serif;
}

.search-form input[type="text"] {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  outline: none;
}

.search-form input::placeholder {
  color: #999;
  font-weight: bold;
}

.search-form button {
  width: 60px;
  background-color: #a3e0e2;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form button svg {
  width: 25px;
  height: 25px;
  fill: white;
}

.search-form button:hover {
  background-color: #8bd4d7;
}

.button2025_sch {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: inline-block;
  padding: 15px 0px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  /* 初期の文字色 */
  border: 1px solid;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 10px 0;
  background-color: #EE9385;
  /* ホバー時の背景色 */
  border-color: #EE9385;
  /* ボーダーも変える */
}

.button2025_sch:hover {
  background-color: #ccc;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #ccc;
  /* ボーダーも変える */
}

.button2025_sch a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.button2025_sch svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: #fff;
  /* 塗りつぶしを白に */
  stroke: #fff;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.button2025_sch:hover svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: white;
  /* 塗りつぶしを白に */
  stroke: white;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}

.sp-headTitle2 {
  font-size: 1.8rem !important;
  line-height: 2.5;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .sp-headTitle2 {
    font-size: 1.1rem !important;
    font-weight: bold;
    padding: 10px 0;
  }
}

.flex_bt {
  position: fixed;
  bottom: 10px;

  left: 0;
  right: 0;
  /* 左右0＋margin:auto で中央寄せ */
  margin-left: auto;
  margin-right: auto;

  width: fit-content;
  /* 300pxでも500pxでも中身の幅でOK（必要ならmax-width指定も可） */
  /* width: auto; でもOK。fit-contentの方が“箱ぴったり”になりやすいです */

  opacity: 0;
  transform: translateY(100px);
  /* 横方向はいじらない */
  transition: opacity 1.5s ease, transform 1s ease;
  z-index: 10000;
}

.flex_bt.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.flex_ct1 {
  display: block;
  width: 160px;
  height: auto;
  float: left;
  padding: 10px 0px 10px 40px;
  font-weight: bold;
  font-size: 0.9rem
}

.flex_ct1 span {
  color: #AB0002;
  font-size: 1.1rem
}

.flex_ct2 {
  display: block;
  width: 380px;
  height: auto;
  float: left;
  text-align: center;
}

.flex_ct2sen {
  display: block;
  width: 1px;
  height: 60px;
  float: left;
  background-color: #ccc;
  margin: 10px 0;
  text-align: center;
}

.flex_ct3 {
  display: block;
  width: 540px;
  height: auto;
  float: left;
}

@media screen and (min-width: 640px) and (max-width: 1121px) {
  .flex_bt {
    max-width: 600px;
    width: 100%;
    height: 60px;
    left: calc(50% - 300px);
  }

  .flex_ct1 {
    display: block;
    width: 160px;
    height: auto;
    float: left;
    padding: 10px 0px 10px 40px;
    font-weight: bold;
    font-size: 0.9rem
  }

  .flex_ct2 {
    display: block;
    width: 380px;
    height: auto;
    float: left;
    text-align: center;
  }

  .flex_ct2sen {
    display: none;
  }

  .flex_ct3 {
    display: none;
  }
}

@media screen and (min-width: 360px) and (max-width: 640px) {
  .flex_bt {
    max-width: 360px;
    width: 100%;
    height: 60px;
    left: calc(50% - 180px);
  }

  .flex_ct1 {
    margin-top: 2px;
    display: block;
    width: 35%;
    height: auto;
    float: left;
    padding: 10px 0px 0px 3%;
    font-weight: bold;
    font-size: 0.6rem
  }

  .flex_ct1 span {
    font-size: 0.8rem
  }

  .flex_ct2 {
    margin-top: 5px;
    display: block;
    width: 62%;
    height: auto;
    float: left;
    text-align: center;
  }

  .flex_ct2sen {
    display: none;
  }

  .flex_ct3 {
    display: none;
  }
}

@media screen and (max-width: 360px) {
  .flex_bt {
    max-width: 96%;
    width: 100%;
    height: 65px;
    left: calc(50% - 48%);
  }

  .flex_ct1 {
    margin-top: 2px;
    display: block;
    width: 35%;
    height: auto;
    float: left;
    padding: 10px 0px 0px 3%;
    font-weight: bold;
    font-size: 0.6rem
  }

  .flex_ct1 span {
    font-size: 0.8rem
  }

  .flex_ct2 {
    margin-top: 5px;
    display: block;
    width: 62%;
    height: auto;
    float: left;
    text-align: center;
  }

  .flex_ct2sen {
    display: none;
  }

  .flex_ct3 {
    display: none;
  }
}

.flex_button {
  position: relative;
  width: 100%;
  max-width: 90%;
  display: inline-block;
  padding: 10px 0px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  /* 初期の文字色 */
  border: 1px solid #EE9385;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  background-color: #EE9385;
  /* ホバー時の背景色 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 12px auto;
}

.flex_button:hover {
  background-color: #ccc;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #ccc;
  /* ボーダーも変える */
}

.flex_button a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.flex_button svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: #fff;
  /* 塗りつぶしを白に */
  stroke: #fff;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 640px) {
  .flex_button {
    position: relative;
    width: 100%;
    max-width: 90%;
    display: inline-block;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    /* 初期の文字色 */
    border: 1px solid #EE9385;
    margin: 5px auto;
  }

  .flex_button svg {
    width: 20px;
    /* 必要なサイズ */
    height: 20px;
  }
}

.flex_button2 {
  position: relative;
  width: 220px;
  max-width: 100%;
  display: inline-block;
  padding: 5px 0px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  /* 初期の文字色 */
  border: 1px solid #333;
  /* 初期のボーダー */
  border-radius: 50px;
  /* 丸みをつける */
  background-color: transparent;
  /* 初期の背景を透明 */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 20px 0px 20px 30px;
  float: left;
}

.flex_button2:hover {
  background-color: #94CBB1;
  /* ホバー時の背景色 */
  color: #fff;
  /* ホバー時の文字色 */
  border-color: #94CBB1;
  /* ボーダーも変える */
}

.flex_button2 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.flex_button2 svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: #333;
  /* 塗りつぶしを白に */
  stroke: #333;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.flex_button2:hover svg {
  width: 23px;
  /* 必要なサイズ */
  height: 23px;
  fill: white;
  /* 塗りつぶしを白に */
  stroke: white;
  /* 線も白に */
  stroke-width: 2px;
  /* 線の太さを適宜調整 */
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}




/* =======================================
   HAMBURGER BUTTON（共通）
======================================= */

/* ハンバーガーボタン本体 */
.menu-toggle {
  width: 70px;
  height: 70px;
  background: transparent;
  border: none;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 9999;
  position: relative;
  /* 各ラインの基準 */
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ヘッダー縮小時 (is-animation 時) */
.is-animation .inn .menu-toggle {
  height: 60px;
}

/* 3本線共通 */
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  /* 1pxだとブレやすいので2pxに */
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 真ん中の線 */
.menu-toggle span {
  top: 50%;
}

/* 上の線 */
.menu-toggle span::before {
  top: calc(50% - 8px);
}

/* 下の線 */
.menu-toggle span::after {
  top: calc(50% + 8px);
}

/* OPEN状態のとき → X型に変形 */
body.menu-open .menu-toggle span {
  background-color: transparent;
  /* 真ん中ラインを消す */
}

body.menu-open .menu-toggle span::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* OVERLAYの中のボタン位置 */
.menu-overlay .menu-toggle {
  position: absolute;
  top: 20px;
  right: 2%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-overlay .menu-toggle.is-animation {
  top: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

  /* OVERLAYの中のボタン位置 */
  .menu-overlay .menu-toggle {
    position: absolute;
    top: 0px;
    right: 0;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
  }

  .menu-overlay .menu-toggle.is-animation {
    top: 0px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
  }
}

/* =======================================
   OVERLAY（BLUR + フェード）
======================================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.7s ease,
    backdrop-filter 0.7s ease;
}

/* OPEN時 */
body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

/* =======================================
   SPLIT LAYOUT（左：画像 / 右：メニュー）
======================================= */

.menu-split {
  display: flex;
  width: 100%;
  height: 100%;
}

/* 左半分：呉市画像 */
.menu-left {
  width: 50%;
  background: url('../../images/menu.jpg') center center / cover no-repeat;
  position: relative;
}

/* ロゴは左上に固定 */
.menu-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 250px;
}

/* 右半分：濃紺のパネル＋BLUR */
.menu-right {
  width: 50%;
  height: 100vh;
  background: rgba(28, 46, 72, 0.9);
  backdrop-filter: blur(12px);
  padding: 80px 60px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s,
    filter 0.7s ease 0.1s;
  box-sizing: border-box;
}

/* スクロールバーのスタイリング（Webkit系ブラウザ） */
.menu-right::-webkit-scrollbar {
  width: 6px;
}

.menu-right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.menu-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.menu-right::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* OPEN時：右パネルが登場 */
body.menu-open .menu-right {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

/* 大きな "K" ロゴ（背景装飾） */
.menu-right::after {
  content: "K";
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 320px;
  font-weight: 700;
  opacity: 0.08;
  font-family: 'Shippori Mincho', serif;
  pointer-events: none;
}

/* =======================================
   メニュー カラム（ヘッダー専用：PC/タブレット）
======================================= */

.menu-nav {
  width: 100%;
  display: flex;
  gap: 35px;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow-x: hidden;
}

/* メニューカラム（PC/タブレット） */
.menu-nav-col {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 180px;
}

/* 見出し（PC/タブレット：常に表示） */
.menu-nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 0 0 12px 0;
  color: #fff;
  display: block;
  letter-spacing: 0.05em;
  font-family: 'Shippori Mincho', serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

/* メニューリスト */
.menu-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-nav-list li {
  opacity: 0;
  transform: translateY(10px);
  margin-bottom: 0;
}

.menu-nav-list li+li {
  margin-top: 14px;
}

/* メニューリンク（上品なスタイル） */
.menu-nav-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.menu-nav-list a:hover {
  color: #019BD9;
}

/* 画像リンク（マイナビなど） */
.menu-nav-list a img {
  max-width: 160px;
  width: auto;
  height: auto;
  display: block;
  margin-top: 12px;
}

/* リストアイテムのフェードインアニメーション */
@keyframes menuItemSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.menu-open .menu-nav-list li {
  animation: menuItemSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 順番にフェードイン用 delay */
body.menu-open .menu-nav-col:nth-child(1) .menu-nav-list li:nth-child(1) {
  animation-delay: 0.15s;
}

body.menu-open .menu-nav-col:nth-child(1) .menu-nav-list li:nth-child(2) {
  animation-delay: 0.20s;
}

body.menu-open .menu-nav-col:nth-child(1) .menu-nav-list li:nth-child(3) {
  animation-delay: 0.25s;
}

body.menu-open .menu-nav-col:nth-child(1) .menu-nav-list li:nth-child(4) {
  animation-delay: 0.30s;
}

body.menu-open .menu-nav-col:nth-child(1) .menu-nav-list li:nth-child(5) {
  animation-delay: 0.35s;
}

body.menu-open .menu-nav-col:nth-child(2) .menu-nav-list li:nth-child(1) {
  animation-delay: 0.20s;
}

body.menu-open .menu-nav-col:nth-child(3) .menu-nav-list li:nth-child(1) {
  animation-delay: 0.25s;
}

body.menu-open .menu-nav-col:nth-child(3) .menu-nav-list li:nth-child(2) {
  animation-delay: 0.30s;
}

body.menu-open .menu-nav-col:nth-child(3) .menu-nav-list li:nth-child(3) {
  animation-delay: 0.35s;
}

body.menu-open .menu-nav-col:nth-child(3) .menu-nav-list li:nth-child(4) {
  animation-delay: 0.40s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(1) {
  animation-delay: 0.30s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(2) {
  animation-delay: 0.35s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(3) {
  animation-delay: 0.40s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(4) {
  animation-delay: 0.45s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(5) {
  animation-delay: 0.50s;
}

body.menu-open .menu-nav-col:nth-child(4) .menu-nav-list li:nth-child(6) {
  animation-delay: 0.55s;
}

body.menu-open .menu-nav-col:nth-child(5) .menu-nav-list li:nth-child(1) {
  animation-delay: 0.35s;
}

body.menu-open .menu-nav-col:nth-child(5) .menu-nav-list li:nth-child(2) {
  animation-delay: 0.40s;
}

body.menu-open .menu-nav-col:nth-child(5) .menu-nav-list li:nth-child(3) {
  animation-delay: 0.45s;
}

/* =======================================
   RESPONSIVE
======================================= */

/* タブレット用（640px-1160px） */
@media (min-width: 640px) and (max-width: 1160px) {
  .menu-split {
    flex-direction: column;
  }

  .menu-left,
  .menu-right {
    width: 100%;
  }

  .menu-left {
    height: 35vh;
    min-height: 280px;
    flex-shrink: 0;
  }

  .menu-right {
    height: 65vh;
    min-height: 400px;
    padding: 50px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: flex-start;
  }

  .menu-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .menu-right .footer_nav-col {
    flex: 0 0 calc(50% - 20px);
    min-width: 200px;
    max-width: calc(50% - 20px);
  }

  .menu-right .footer_nav-toggle {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .menu-right .footer_nav-content a {
    font-size: 15px;
  }

  .menu-right::after {
    font-size: 180px;
    right: 20px;
    bottom: 15px;
  }

  .menu-logo {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .menu-right {
    padding: 50px 24px;
  }

  .menu-col a {
    font-size: 17px;
  }

  .menu-logo {
    width: 160px;
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
  }
}

/* ==========================
   見えない精度セクション 共通
   ========================== */

.sec_precision {
  background: #fff;
  overflow: visible !important;
}

.sec_precision_in {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* 左：画像ブロックの共通 */
.precision_images {
  position: relative;
}

.precision_image {
  position: relative;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.precision_image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 右：テキスト共通 */
.precision_content {
  color: #333;
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック体", "Yu Gothic", sans-serif;
}

.precision_ttl {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝体", serif;
  color: #0052a4;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
}

.precision_text p {
  margin: 0 0 10px;
  line-height: 2.2;
}

/* ボタン */
.precision_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 50px;
  border-radius: 999px;
  background: #00a0e9;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 20px rgba(0, 160, 233, 0.4);
  transition: .25s;
}

.precision_btn a:hover {
  background: #0089c2;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 160, 233, 0.55);
}

.precision_btn_arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .25s;
}

.precision_btn a:hover .precision_btn_arrow {
  transform: translateX(4px) rotate(45deg);
}

/* フェードインアニメ（共通） */
.js-fadeup {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(6px);
  transition:
    opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fadeup.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}















/* ==========================
   新着情報セクション 共通
   ========================== */

.sec_news {
  background: #fff;
}

.sec_news_in {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

/* 左：縦書きタイトル */
.news_heading {
  flex: 3;
  /* 全体の3割 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news_jp {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝体", serif;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
}

.news_en {
  margin: 16px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

/* 右側コンテンツ */
.news_content {
  flex: 7;
  /* 全体の7割 */
  width: 70% !important;
  max-width: 1530px;
  position: relative;
}

/* タブ */
.news_tabs {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
}

.news_tabs li {
  flex: 1 1 15%;
  border-right: 1px solid #ddd;
  text-align: center;
}

.news_tabs li:last-child {
  border-right: none;
}

.news_tabs li button {
  width: 100%;
  padding: 16px 10px;
  background: #fff;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background .25s, color .25s;
  text-align: center;
  color: #333;
  font-weight: normal;
}

.news_tabs li.active button {
  background: #023A8E;
  color: #fff;
}

.news_tabs li button:hover {
  background: #023A8E;
  color: #fff;
}

/* NEWSリスト共通 */
.news_list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
  text-align: left;
}

.news_item {
  border-bottom: 1px solid #ddd;
}

.news_item>a {
  display: flex;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  color: #333;
}

.news_thumb {
  flex: 0 0 140px;
  height: 90px;
  margin-right: 24px;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f3f3;
}

.news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news_body {
  flex: 1 1 auto;
}

.news_cat {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid #999;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
}

.news_date {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: #666;
}

.news_txt {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.9;
}

/* フェードイン共通（kuse っぽく） */
.js-fadeup {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(6px);
  transition:
    opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-fadeup.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* ==========================
   KURE IMAGE 共通
   ========================== */

/* ==========================
   KURE IMAGE 共通
   ========================== */

.sec_kure_image {
  width: 100%;
  background: #fff;
}

/* 内側ラッパー（背景ロゴもここで管理） */
.sec_kure_image_in {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;

  background-image: url("../../images/haikei.png");
  /* ロゴ画像パスは適宜変更 */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 90%;
}

/* 写真を縦中央に置くためのラッパー（レイアウト用transform） */
.kure-photo-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* 写真本体（ここに js-fadeup を付ける想定） */
.kure-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ▼ SLIDERカード 共通 ▼ */
.slider-card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.slider-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: left;
}

.slider-card_img img {
  display: block;
  width: 100%;
  height: auto;
}

.slider-card_body {
  position: relative;
  box-sizing: border-box;
}

.slider-card_head {
  display: flex;
  align-items: flex-start;
}

.slider-card_label-vertical {
  font-weight: 500;
  color: #1b4f9b;
  /* 紺系 */
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5em;
}

.slider-card_title-block {
  flex: 1;
}

.slider-card_title-main,
.slider-card_title-sub {
  font-weight: 500;
}

.slider-card_text {
  line-height: 1.8;
}

.slider-card_btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #28a9e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-card_btn-icon {
  display: block;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

/* ▲ SLIDERカード 共通 ▲ */
/* ▼ SLIDERカード Hover Effect（改良版） ▼ */

.slider-card {
  transition: all 0.45s cubic-bezier(.25, .8, .25, 1);
}

.slider-card_body {
  transition: background-color 0.45s cubic-bezier(.25, .8, .25, 1);
}

.slider-card_btn {
  transition: transform 0.45s cubic-bezier(.25, .8, .25, 1),
    background-color 0.45s cubic-bezier(.25, .8, .25, 1);
}

.slider-card_btn-icon {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(.25, .8, .25, 1);
}

/* --- hover時の変化 --- */

/* 薄い青背景へ */
.slider-card_link:hover .slider-card_body {
  background: rgba(40, 169, 224, 0.08);
}

/* ボタン少し大きく（回転なし） */
.slider-card_link:hover .slider-card_btn {
  transform: scale(1.15);
  background: #4fc3f7;
  /* 明るめ水色 */
}

/* →をほんの少し右に動かす（2pxの品のある動き） */
.slider-card_link:hover .slider-card_btn-icon {
  transform: translateX(2px);
}

/* ▲ SLIDERカード Hover Effect（改良版） ▲ */

/* ▼ 事業案内＋スライダー 2カラム 共通 ▼ */
.sec_business_in {
  display: flex;
  align-items: stretch;

}

/* 縦見出しの基本パターンは news と共通化 */
.news_heading,
.business_heading {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

/* 事業案内 見出し側 */
.business_heading {
  flex: 3;
  /* 全体の3割 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* 左寄せ */
}

.business_jp {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.business_en {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  color: #023A8E;
}

.business_txt {
  font-size: 0.9rem;
  line-height: 2;
}

/* 右コンテンツ（スライダー側） */
.business_content {
  flex: 7;
  /* 全体の7割 */
  max-width: 70% !important;
  position: relative;
}

/* ▲ 事業案内＋スライダー 2カラム 共通 ▲ */
/* ▼ Splideカスタム ▼ */



/* ▲ Splideカスタム ▲ */
/* ▼ SPLIDE矢印カスタム ▼ */
#splide-ranking .splide__arrow {
  background-color: rgba(0, 120, 200, 0);
  /* 透明感のあるブルー背景 */
  border: 1px solid #023A8E;
  /* 鮮やかなブルーの輪郭 */
  border-radius: 9999px;
  /* 丸みを強調（完全な円） */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

/* アイコンは洗練された太めの矢印に */
#splide-ranking .splide__arrow svg {
  fill: #023A8E;
  width: 16px;
  height: 16px;
  transition: 0.3s ease-in-out;
}

/* ホバー時のアニメーション */
#splide-ranking .splide__arrow:hover {
  background-color: #007ACC;
  border-color: #007ACC;
}

#splide-ranking .splide__arrow:hover svg {
  fill: #fff;
}

/* PC時の位置調整（左右マイナス位置） */
#splide-ranking .splide__arrow--prev {
  left: -50px;
}

#splide-ranking .splide__arrow--next {
  right: -50px;
}

/* ▲ SPLIDE矢印カスタム ▲ */
/* ▼ CONTACT FORMセクション（背景は別で実装済み想定） ▼ */
.sec_contactform {
  position: relative;
  padding: 150px 0;
  text-align: center;
  z-index: 1;
}

/* リンク全体 */


/* テキスト */
.contactform_text {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 20px;
}

/* アンダーライン（初期0%） */
.contactform_underline {
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.85);
  width: 0%;
  margin-top: 10px;
  transition: width 0.45s ease;
}

/* 円 */
.contactform_circle {
  width: 130px;
  height: 130px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  position: relative;
}

/* ▼ CSS矢印 ▼ */
.contactform_arrow {
  width: 26px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  display: block;
  transition: 0.35s ease;
}

/* 矢印の先端 */
.contactform_arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  transition: 0.35s ease;
}

/* ▼ HOVER ANIMATION ▼ */
.contactform_link:hover .contactform_underline {
  width: 100%;
}

.contactform_link:hover .contactform_circle {
  border-color: #fff;
  transform: scale(1.1);
}

.contactform_link:hover .contactform_arrow {
  transform: translateX(10px);
  background-color: #fff;
}

.contactform_link:hover .contactform_arrow::after {
  border-color: #fff;
}

/* ▲ CONTACT FORM ▲ */

/* ▼ 波背景用のカラーパレット・パラメータ ▼ */
:root {
  --line-1: #005BAC;
  /* 濃い青 */
  --line-2: #0072CE;
  /* 標準の青 */
  --line-3: #00A0E9;
  /* 明るめの青 */
  --opacity: 0.65;
  /* ラインの不透明度 */
  --thickness: 1.5;
  /* 線の太さ(px) */
  --blur: 0.0;
  /* ぼかし(px) */
  --speed-1: 0.9;
  --speed-2: 1.2;
  --speed-3: 1.6;
  --amp-1: 16;
  --amp-2: 22;
  --amp-3: 28;
  --wave-bg-color: #ffffff;
}

/* セクション本体：背景として波を敷く */
.sec_contactform {
  position: relative;
  overflow: hidden;
  /* 波がはみ出さないように */
  padding: 150px 0;
}

/* 中身のコンテンツは上に乗せる */
.sec_contactform_in {
  position: relative;
  z-index: 1;
}

/* 波背景 */
.wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--wave-bg-color);
  pointer-events: none;
  contain: strict;
  overflow: hidden;
}

.wave-bg svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(var(--blur));
}

.glow {
  mix-blend-mode: multiply;
  /* 白背景前提 */
}

/* 動き抑制設定の人向け */
@media (prefers-reduced-motion: reduce) {
  .wave-bg {
    background: #ffffff;
  }

  .wave-bg svg {
    display: none;
  }
}

/* ▼ フォント：TASA Explorer（英字用） ▼ */
/* ▼ フッター 共通（修正版） ▼ */
.sec_footer {
  background-color: #273954;
  color: #ffffff;
  text-align: left;
}

.sec_footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  /* アニメーション */
}

.sec_footer li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  /* アニメーション */
}

/* HOVER時はシアン寄りブルーに & ほんの少し右へ */
.sec_footer a:hover,
.sec_footer li a:hover {
  color: #019BD9;
  transform: translateX(2px);
}

/* コピーライト */
.footer_copy {
  font-size: 0.85rem;
}

/* ▲ フッター 共通 ▼ */

.footer_logo img {
  max-width: 300px;
}



.pan {
  color: #fff;
  font-size: 14px;
  padding-top: 150px;
  display: flex !important;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

@media screen and (min-width: 640px) {
  .pan-sch {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .pan {
    color: #fff;
    font-size: 12px;
    position: absolute;
    padding: 0;
    bottom: 10px;
    display: flex !important;
  }
}

.pan li {
  display: flex !important;
  align-items: center;
  color: #fff;
  margin: 0 !important;
  padding: 0 !important;
}

.pan li::before {
  content: "/" !important;
  padding: 0 15px !important;
  color: #fff !important;
  display: inline-block !important;
  margin: 0 !important;
}

.pan li:first-child::before {
  display: none !important;
}

.pan li a {
  color: #fff;
  padding: 0;
  text-decoration: none;
  display: inline-block;
}

.sub-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(47, 64, 94, .7);
  z-index: 2;
  /* 表示位置調整 */
  pointer-events: none;
  /* スライダー操作に影響なし */
}


/* 代表挨拶 共通 */

.sec_greeting {
  background: #fff;
}

.sec_greeting_in {
  /* 必要ならここに共通の余白など */
  text-align: left;
}

.greeting_head {
  margin-bottom: 40px;
}



.greeting_photo figure {
  margin: 0;
}

.greeting_photo img {
  width: 100%;
  height: auto;
  display: block;
}

.greeting_caption {
  margin-top: 20px;
}

.greeting_position {
  font-size: 1.1rem;
}

.greeting_name {
  font-size: 1.3rem;
  line-height: 1.5;
}

.greeting_text p+p {
  margin-top: 1.5em;
}

.recruit-top {
  width: 100%;
  background: #00317b;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  position: relative;
  z-index: 5000;
}

.recruit-top_in {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.recruit-text {
  font-size: 15px;
  letter-spacing: 0.05em;
}

.recruit-text .label {
  font-weight: 600;
  color: #019BD9;
}

/* ▼ 審査部カードバナー（3カラムグリッド） ▼ */
.inspection-cards-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  box-sizing: border-box;
}

.inspection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
}

/* PC用スタイル */
@media screen and (min-width: 1161px) {
  .inspection-cards {
    gap: 50px;
  }

  .inspection-cards .slider-card {
    max-width: 100%;
  }
}

/* タブレット用スタイル */
@media screen and (min-width: 640px) and (max-width: 1160px) {
  .inspection-cards-wrap {
    padding: 0 5%;
  }

  .inspection-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .inspection-cards .slider-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* スマホ用スタイル */
@media screen and (max-width: 640px) {
  .inspection-cards-wrap {
    padding: 0 6%;
  }

  .inspection-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inspection-cards .slider-card {
    max-width: 100%;
  }
}

/* ▲ 審査部カードバナー ▲ */

/* メッセージセクション */
#strength_msg {
  margin-top: 100px;
}

.bg_varnish {
  background-color: #f0f4f8;
  width: 100%;
}

.msg_box {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.msg_title {
  font-family: "Shippori Mincho", "Times New Roman", serif;
  font-size: 3rem;
  color: #00479c;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.msg_lead {
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 60px;
}

.msg_lead .mt20 {
  margin-top: 15px;
}

.msg_image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.msg_image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 640px) {
  .msg_title {
    font-size: 1.8rem;
  }

  .msg_lead {
    font-size: 0.95rem;
    text-align: left;
    padding: 0 20px;
  }
}

/* ページ固有スタイル */
.full_slider_sec {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-top: 80px;
  /* 前のセクションとの余白 */
}

.loop_wrap {
  width: 100%;
}

.loop_list {
  display: flex;
  width: fit-content;
  /* 中身に合わせて幅を確保 */
  animation: loopSlide 30s linear infinite;
  /* 30秒かけて一周、無限ループ */
}

.loop_list li {
  width: 25vw;
  /* 画面幅の1/4サイズ */
  min-width: 300px;
  /* スマホなどで小さくなりすぎないように */
  flex-shrink: 0;
}

.loop_list li img {
  width: 100%;
  height: 300px;
  /* 高さを揃える（画像のアスペクト比に合わせて調整可） */
  object-fit: cover;
  /* トリミングして枠いっぱいにする */
  display: block;
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* 全体の半分（1セット分）移動したら0に戻る */
  }
}

/* ホバー時に止める場合（お好みで） */
/*
.loop_list:hover {
  animation-play-state: paused;
}
*/

.strength_head {
  width: 100%;
  text-align: left;
}

.strength_catch {
  font-family: "Shippori Mincho", "Times New Roman", serif;
  font-size: 3.6rem;
  color: #00479c;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.strength_lead {
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
  font-weight: 500;
  text-align: left;
  max-width: 900px;
}

.strength_lead .mt20 {
  margin-top: 30px;
}

.strength_main_img {
  width: 100%;
  margin-top: 60px;
}

.strength_main_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 技術力セクション */
.tech_layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* 上揃え */
  gap: 60px;
  margin-top: 80px;
}

.tech_vertical_box {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 1em;
  margin-right: 0;
  flex-shrink: 0;
  line-height: 1;
  width: 120px;
  display: flex;
  /* フレックスボックス化 */
  align-items: center;
  /* 横方向（Cross Axis）の中央揃え */
}

.tech_vertical_txt {
  font-family: "Shippori Mincho", "Times New Roman", serif;
  font-size: 3.6rem;
  font-weight: 500;
  color: #000;
  margin: 0;
  /* マージンリセット */
  letter-spacing: 0.5em;
}

.tech_info_box {
  flex: 1;
  text-align: left;
  padding-top: 0;
  /* パディング削除 */
  margin-top: -10px;
  /* フォントの余白分を視覚的に調整 */
}

.tech_caption {
  font-family: "Shippori Mincho", "Times New Roman", serif;
  font-size: 2.8rem;
  color: #00479c;
  line-height: 1.4;
  margin-bottom: 30px;
  margin-top: 0;
  /* 上マージン削除 */
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tech_description {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 40px;
  color: #333;
}

.tech_description .mt-mid {
  margin-top: 20px;
}

.tech_image_box {
  width: 45%;
  flex-shrink: 0;
}

.tech_image_box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ボタンのスタイル（共通CSSから引き継がれていない場合の保険） */
.precision_btn a {
  display: inline-block;
  background: #009ee5;
  color: #fff;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
  min-width: 280px;
  text-align: center;
}

.precision_btn a:hover {
  background: #00479c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.precision_btn_arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
  position: relative;
  top: -1px;
}

/* レスポンシブ */
@media screen and (max-width: 1160px) {
  .strength_catch {
    font-size: 2.8rem;
  }

  .tech_vertical_txt {
    font-size: 3.5rem;
  }

  .tech_caption {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 900px) {
  .tech_layout {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .tech_vertical_box {
    writing-mode: horizontal-tb;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
    text-align: left;
  }

  .tech_vertical_txt {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }

  .tech_info_box {
    width: 100%;
    flex: none;
    order: 2;
    max-width: none;
  }

  .tech_image_box {
    width: 100%;
    flex: none;
    order: 3;
    margin-top: 30px;
  }

  .tech_caption {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 640px) {
  .strength_catch {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .strength_lead {
    font-size: 0.95rem;
  }

  .strength_lead .mt20 {
    margin-top: 20px;
  }

  .tech_layout {
    margin-top: 40px;
    gap: 20px;
  }

  .tech_vertical_txt {
    font-size: 2rem;
  }

  .tech_caption {
    font-size: 1.6rem;
  }

  .precision_btn a {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    min-width: auto;
  }
}