@charset "utf-8";

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #333;
  font-family: 'Noto Sans JP',sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-image: url(../img/background.webp);
  margin: auto;
  display: grid;
  width: 100%;
  font-size: 16px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px){
  body{
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}
h2{
  font-size: 24px;
  line-height: 2;
  margin: 0px auto;
  font-weight: 500;
}
@media screen and (max-width: 768px){
  h2{
    font-size: 18px;
    line-height: 1.6;
    margin: 10px auto;
  }
}
a{
  text-decoration: none;
}
a,a:hover,a:visited{
  color: inherit;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
@media screen and (max-width: 768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
/* ------------------------ ヘッダー ------------------------ */
header {
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-image: url(../img/background.webp);
  z-index: 9999;
}
@media only screen and (max-width: 768px){
  header {
    height: 55px;
  }
}
.cash_h{
  display: none;
}
@media only screen and (max-width: 1099px){
  .cash_h{
    display: block;
  }
}
header a {
  text-decoration: none;
  color: #333;
}
.logo img {
  width: 250px;
  padding-top: 10px;
}
@media only screen and (max-width: 768px){
  .logo img {
    width: 180px;
    padding-top: 10px;
  }
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
  height: 80px;
}
@media only screen and (max-width: 768px){
  .header-inner {
    height: 60px;
  }
}
.menu-wrapper{
  display: flex;
}
.menu-lists ul{
  display: flex;
}
.menu-lists ul li{
  padding: 10px;
  font-size: 16px;
  letter-spacing: 2px;
  white-space: nowrap;
  margin-right: 20px;
}
@media only screen and (max-width: 768px){
  .menu-lists ul li{
    margin-right: 0;
    padding: 15px 0;
  }
}
.menu-lists li a{
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #B82132 50%, #333 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.menu-lists li a:hover{
  background-position: 0 100%;
}
@media (max-width:1099px){
  .btn{
      width: 100%;
      display: block;
      width: 39px;
      height: 39px;
      position: absolute;
      z-index: 999;/*追記：いつも一番上*/
      top: 10%;
      bottom: 0;
      right: 4%;
      margin: auto 0;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar{
      width: 20px;
      height: 2px;
      display: block;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar-top{
    top: 10px;
  }
  .bar-middle{
      top: 50%;
      transform: translate(-50%,-50%);
  }
  .bar-bottom{
    bottom: 10px;
  }
  .btn.close .bar-top{
      transform: translate(-50%,10px) rotate(45deg);
      transition: transform .3s;
  }
  .btn.close .bar-middle{
      opacity: 0;
      transition: opacity .3s;
  }
  .btn.close .bar-bottom{
      transform: translate(-50%,-8px) rotate(-45deg);
      transition: transform .3s;
  }
  .menu-lists {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fdf2d4;
    color: #333;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ここをflex-startにして上寄せ */
    padding-top: 100px; /* ロゴやボタン分の余白 */
    align-items: center;
    text-align: center;
    z-index: 9998;
  }
  .menu-lists.open {
    animation: slideDown 0.4s ease forwards;
    pointer-events: auto;
  }
  .menu-lists.closing {
    animation: slideUp 0.4s ease forwards;
    pointer-events: none;
  }
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideUp {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  .menu-lists ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .menu-lists ul li {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.4s;
  }
  /* 各メニュー項目にアニメ遅延を付けて順に表示 */
  .menu-lists.open ul li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .menu-lists.open ul li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .menu-lists.open ul li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .menu-lists.open ul li:nth-child(4) {
    animation-delay: 0.4s;
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .menu-lists img{
    width: 250px;
    margin-top: 20px;
  }
}

/* ------------------------  fv  ------------------------ */
.cp{
  width: 100%;
  padding: 5px 0;
  background: #F9C83D;
  text-align: center;
  font-size: 20px;
  margin-top: 80px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px){
  .cp{
    margin-top: 60px;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 7px 0;
  }
}
.jost{
  font-family: 'Jost';
  font-weight: 700;
  color: #B81C23;
}
.bold{
  font-weight: 700;
  color: #B81C23;
}
/* Swiper スライダー*/
.fv-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px){
  .fv-slider{
    height: 250px;
  }
}
.swiper-slide img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px){
  .swiper-slide img {
    height: 250px;
  }
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff!important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.swiper-button-prev {
  left: 20px!important;
}
.swiper-button-next {
  right: 20px!important;
}
@media only screen and (max-width: 768px){
  .swiper-button-prev {
    left: 10px!important;
  }
  .swiper-button-next {
    right: 10px!important;
  }
}
:root
 {
  --swiper-navigation-size: 20px!important;
}
/* ゲージ */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 20; /* ←追加 */
}
.progress-bar .progress {
  height: 100%;
  width: 0;
  background: #DB5332;
  transition: width linear;
}
/* ------------ FV スクロールダウン ------------ */
.p-mv__scroll {
	bottom: 70px;
	color: #fff;
	font-size: 10px;
	position: absolute;
	right: 20px;
	text-transform: uppercase;
	writing-mode: vertical-rl;
  letter-spacing: 4px;
}
.p-mv__scroll::before {
	animation: scroll 2s infinite;
	background-color: #fff;
	bottom: -55px;
	content: "";
	height: 50px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 3px;
	width: 1px;
}
@media screen and (min-width: 768px) {
.p-mv__scroll {
	bottom: 170px;
	font-size: 12px;
	right: 50px;
}
.p-mv__scroll::before {
	bottom: -160px;
	height: 150px;
}
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  }
  /* ------------ FV スクロールダウン ここまで ------------ */
 /* ------------------------ sec01 ------------------------ */
  .sec01{
    max-width: 1000px;
    margin: 50px auto;
  }
  @media only screen and (max-width: 768px){
    .sec01{
      width: 90%;
      margin: 30px auto 0;
    }
  }
  .sec01 h2{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .sec01 img{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 3px;
  }
  @media only screen and (max-width: 768px){
    .sec01 img{
      margin-bottom: 10px;
    }
  }
  .sec01 a:hover{
    opacity: 0.8;
    transition: 0.5s;
  }
  .s01_flex02{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    gap: 40px;
  }
  @media only screen and (max-width: 1099px){
    .s01_flex02{
      justify-content: center;
    }
  }
  @media only screen and (max-width: 768px){
    .s01_flex02{
      justify-content: space-between;
    }
  }
  .s01_flex02 a{
    width: 48%;
  }
  @media only screen and (max-width: 1099px){
    .s01_flex02 a{
      width: 45%;
    }
  }
  @media only screen and (max-width: 768px){
    .s01_flex02 a{
      width: 48%;
    }
  }
  @media only screen and (max-width: 768px){
    .s01_flex02{
      gap: 10px;
    }
  }
  .s01_flex02 img{
    max-width: 530px;
    display: block;
    margin: auto;
  }
  .s01_flex02 a:hover{
    opacity: 0.8;
    transition: 0.5s;
  }
  /*---------- ボタン ----------*/
  .button a {
    background: #fff;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px auto;
    max-width: 150px;
    padding: 10px 25px;
    color: #B81C23;
    border: 1px solid #B81C23;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-family: 'Jost';
    letter-spacing: 1.5px;
    font-size: 16px;
}
.button a:hover {
    background: #B81C23;
    color: #FFF;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #B81C23;
    border-right: 2px solid #B81C23;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}
 /* ------------------------ sec02 ------------------------ */
.sec02{
  width: 100%;
  margin: 50px 0 0;
  padding: 50px 0 100px;
  background: #F8E8E1;
}
@media only screen and (max-width: 768px){
  .sec02{
    padding: 30px 0 50px;
  }
}
.s02_flex{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 50px 0;
  margin: auto;
}
@media only screen and (max-width: 1099px){
  .s02_flex{
    display: block;
    padding: 30px 0;
  }
}
.s02_left{
  width: 50%;
  margin-left: 30px;
}
@media only screen and (max-width: 1099px){
  .s02_left{
    width: 90%;
    margin: auto;
  }
}
.s02_left img{
  width: 100%;
}
@media only screen and (max-width: 1099px){
  .s02_left img{
    margin-bottom: 10px;
    width: 90%;
    display: block;
    margin: 20px auto 0;
  }
}
.s02_right{
  width: 50%;
  margin: auto;
}
.s02_right img{
  width: 100%;
}
@media only screen and (max-width: 1099px){
  .s02_right{
    width: 90%;
  }
}
.s02_left h2{
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 2;
  font-weight: 500;
}
@media only screen and (max-width: 1099px){
  .s02_left h2{
    font-size: 18px;
    text-align: center;
  }
}
.s02_right p{
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin: 20px auto;
}
@media only screen and (max-width: 1099px){
  .s02_right p{
    font-size: 14px;
  }
}
.s02_table img{
  width: 100%;
  display: block;
  max-width: 700px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1099px){
  .s02_table img{
    width: 90%;
  }
}
.s02_cta{
  margin: auto;
  max-width: 500px;
}
/*---------- ボタン2 ----------*/
.button02 a {
  background: #fff;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px auto;
  margin-left: 0;
  max-width: 150px;
  padding: 10px 25px;
  color: #B81C23;
  border: 1px solid #B81C23;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 16px;
}
@media only screen and (max-width: 1099px){
  .button02 a{
    margin-left: auto;
  }
}
.button02 a:hover {
  background: #B81C23;
  color: #FFF;
}
.button02 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #B81C23;
  border-right: 2px solid #B81C23;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button02 a:hover:after {
  border-color: #FFF;
}
.cash img{
width: 250px;
margin: auto;
display: block;
}
@media only screen and (max-width: 1099px){
  .cash img{
display: block;
margin: auto;
    }
}
 /* ------------------------ sec03 ------------------------ */
 .sec03{
  padding: 100px 0;
  width: 100%;
  background:rgba(219,83,50,1.0);
  background-image: url(../img/sec03_bg.webp);
 }
 @media only screen and (max-width: 768px){
  .sec03{
    padding: 50px 0;
  }
 }
 .sec03 h2{
  font-size: 24px;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  margin: 0 auto 30px;
  font-weight: 500;
 }
 @media only screen and (max-width: 768px){
  .sec03 h2{
    font-size: 18px;
  }
 }
 .s03_flex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 30px;
  padding: 50px 50px 0;
  max-width: 1000px;
  width: 90%;
  margin: auto;
 }
 @media only screen and (max-width: 1099px){
  .s03_flex{
    flex-direction: column-reverse;
    width: 90%;
    padding: 0;
    border-radius: 10px;
    gap: 10px;
  }
 }
 .s03_left{
  width: 50%;
 }
 @media only screen and (max-width: 1099px){
  .s03_left{
    width: 90%;
    margin: auto;
  }
 }
 .s03_left p{
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin: 0 auto 20px;
 }
 @media only screen and (max-width: 1099px){
  .s03_left p{
    font-size: 14px;
    letter-spacing: 1.2px;
    margin: 10px auto;
  }
 }
 .s03_right{
  width: 50%;
 }
 @media only screen and (max-width: 1099px){
  .s03_right{
    width: 100%;
  }
 }
 .s03_right img{
  width: 100%;
  border-radius: 3px;
 }
 @media only screen and (max-width: 1099px){
  .s03_right img{
    border-radius: 10px 10px 0 0;
  }
 }
 .s03_left.button02 a{
  margin: 50px auto 0;
 }
 /* ------------------------ CTAボタン ------------------------ */

/*---------- ボタン3 ----------*/
.button03 a {
  background: #B81C23;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px auto 20px;
  max-width: 200px;
  padding: 10px 25px;
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 16px;
}
@media only screen and (max-width: 1099px){
  .button03 a{
    margin: 30px auto 20px;
  }
}
.button03 a:hover {
  background: #fff;
  color: #B81C23;
  outline: 1px solid #B81C23;
}
.button03 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button03 a:hover:after {
  border-color: #B81C23;
}
/*==================== sec05 news ====================*/
.sec05{
  padding: 100px 0;
  width: 100%;
  background: #FDF2D4;
}
@media only screen and (max-width: 768px){
  .sec05{
    padding: 50px 0;
  }
}
.news{
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 1099px){
  .news{
    width: 90%;
  }
}
.sec05 h2{
  font-size: 24px;
  text-align: left;
}
@media only screen and (max-width: 768px){
  .sec05 h2{
    font-size: 18px;
  }
}
.news_flex{
  display: flex;
}
.news a{
  color: #333;
  text-decoration: none;
}
.news a:hover{
  opacity: 0.8;
  transition : 0.5s;
}
.news p{
  margin-bottom: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ここからがニュース記事のCSS */
.news_list_item {
padding: 20px 30px;
background: #fff;
border-radius: 3px;
margin-bottom: 10px;
}
@media only screen and (max-width: 600px){
  .news_list_item {
    padding: 20px;
    }
    .news_list_item p{
      font-size: 14px;
    }
}
.news_list_item a {
position: relative;
display: flex;
padding-right: 30px;
align-items: center;
}
.news_list_date {
display: flex;
align-items: center;
font-family: 'Jost';
}
@media only screen and (max-width: 600px){
  .news_list_date {
    padding-bottom: 10px;
  }
}
.news_list_date time{
  font-family: 'Jost';
}
@media only screen and (max-width: 600px){
  .news_list_date time{
    font-size: 12px;
  }
}
.news_list p{
  padding-left: 20px;
  margin: 0;
}
@media only screen and (max-width: 600px){
  .news_list p{
    padding-left: 0;
  }
}
.category{
  background: #F9C83D;
  padding: 2px 15px;
  color: #fff;
  margin-left: 15px;
  border-radius: 100px;
  font-size: 14px;
  height: 23px;
}
@media only screen and (max-width: 768px){
  .category{
    font-size: 11px;
    margin-left: 10px;
    height: 16px;
    padding: 2px 10px;
  }
}
.news_next{
  float: right;
  margin-top: 10px;
}
.news_next a.btnlinestretches4{
  display: flex;
  margin-top: 10px;
}
@media only screen and (max-width: 768px){
  .news_next a.btnlinestretches4 span{
    font-size: 12px;
  }
}
.bottomFooter__topBtn{
width: 20px;
 height: 20px;
 border-radius:50%;
 margin-right:10px;
 background:#fff;/*背景色*/
 color: #B81C23;/*マークの色*/
 border: 1px solid #B81C23;/*外枠の線*/
 position: relative;
}
@media only screen and (max-width: 768px){
  .bottomFooter__topBtn{
    width: 15px;
    height: 15px;
  }
}
.bottomFooter__topBtn::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.8px solid #B81C23;
  border-right: 1.8px solid #B81C23;
  transform: rotate(45deg);
  position: absolute;
  top: 35%;
  left: 30%;
}
@media only screen and (max-width: 768px){
  .bottomFooter__topBtn::before {
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .news_list_item a {
      display: block;
  }
}
@media screen and (max-width: 769px) {
  .news_list_item a  {
      font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .news_list_item a {
      padding-right: 0;
  }
}




.single{
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px){
  .single{
    margin: 50px auto 0;
  }
}
.s_main{
  max-width: 1000px;
  margin: 50px auto;
  padding: 50px;
  background-color: #fff;
}
.single_h2{
  margin: 10px 0 50px;
  font-size: 24px;
  letter-spacing: 2px;
  border-bottom: solid 1.5px #bcbcbc;
}
.single p{
  font-size: 16px;
  letter-spacing: 1px;
}
.single img{
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 30px auto;
}
@media screen and (max-width: 768px){
  .single_h2{
    font-size: 20px;
  }
}
.single_btn{
  margin: 100px auto 70px;
  text-align: center;
}
.single_btn a{
  color: #1d1d1d;
}
.page-link.prev a{
  color: #fff;
}
.page-link.next a{
  color: #fff;
}
.page-links{
  display: flex;
  justify-content: center;
  font-size: 15px;
}
.page-link.prev,
.page-link.next{
  padding: 5px 20px;
  background-color: #B81C23;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.archive{
  padding: 5px 20px;
  border: solid 1px #B81C23;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.archive a{
  color: #B81C23;
}
.page-link.prev a:hover,
.page-link.next a:hover,
.page-link.archive a:hover{
  opacity: 0.8;
}
.blog__pagination{
  text-align: center;
  margin: 50px auto 100px;
}
.page-numbers{
  background-color: #fff;
  color: #fff;
  padding: 5px 10px;
  margin: 0px 5px;
  border-radius: 5px;
}
.pagination span{
  background-color: #B81C23;
}
.pagination a:hover{
  opacity: 0.8;
}
.mb0{
  margin-bottom: 0;
}
/*==================== sec06 contact ====================*/
.sec06{
  margin: 100px auto;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
@media only screen and (max-width: 768px){
  .sec06{
    width: 90%;
    margin: 50px auto;
  }
}
.sec06 .button02 a{
  margin: 50px auto ;
  max-width: 200px;
}
@media only screen and (max-width: 768px){
  .sec06 .button02 a{
    margin: 30px auto;
  }
}
 /*================ フッター ====================*/
 footer{
  background: #760006;
  padding: 50px 0;
  width: 100%;
  color: #fff;
 }
 @media only screen and (max-width: 768px){
  footer{
    text-align: center;
  }
 }
 footer a{
  color: #fff;
 }
 footer a:hover{
  opacity: 0.8;
  transition: 0.5s;
 }
 footer h1{
  font-size: 20px;
 }
 @media only screen and (max-width: 768px){
  footer h1{
    margin-bottom: 10px;
    font-size: 15px;
  }
 }
 .cash_f{
  text-align: center;
  font-size: 16px;
 }
 @media only screen and (max-width: 768px){
  .cash_f{
    font-size: 14px;
   }
 }
 .cash_f img{
  display: block;
  margin: 10px auto 50px;
  width: 340px;
 }
 @media only screen and (max-width: 768px){
  .cash_f img{
    width: 300px;
  }
 }
 .flex02{
  max-width: 1200px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  font-size: 16px;
 }
 @media only screen and (max-width: 768px){
  .flex02{
    display: block;
    text-align: center;
    width: 90%;
    font-size: 14px;
  }
 }
 .f_right{
  width: 70%;
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  flex-direction: row;
  flex-basis: 58%;
  gap: 10px 30px
 }
 @media only screen and (max-width: 768px){
  .f_right{
    width: 100%;
    display: block;
  }
  .f_right li{
    margin: 15px auto;
  }
}
.f_right img{
  width: 25px;
}
@media only screen and (max-width: 768px){
  .f_right img{
    margin-bottom: 30px;
  }
}
.f_left{
  width: 30%;
  text-align: left;
}
@media only screen and (max-width: 768px){
  .f_left{
    display: block;
    width: 100%;
    margin: 0 auto 30px;
  }
 }
 .f_left img{
  width: 222px;
 }
 @media only screen and (max-width: 768px){
  .f_left img{
    width: 200px;
    display: block;
    margin: auto;
   }
 }
.copy{
  text-align: center;
  font-size: 14px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 768px){
  .copy{
    font-size: 12px;
  }
}
/*================ フッター ここまで ====================*/
/*==================== sec07 about ===================*/
.sec07{
  max-width: 800px;
  margin: 50px auto 50px;
  text-align: center;
}
@media only screen and (max-width: 768px){
  .sec07{
    width: 90%;
    margin: 30px auto;
  }
  .sec07 h2{
    margin-bottom: 30px;
  }
}
.sec07 p{
  line-height: 1.8;
}
.fv02{
  margin-top: 80px;
  width: 100%;
}
@media only screen and (max-width: 768px){
  .fv02{
    margin-top: 60px;
  }
}
.fv02 img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media only screen and (max-width: 768px){
  .fv02 img{
    height: 250px;
  }
}
/*==================== sec08 ===================*/
.sec08{
  background: #DB5331;
  border-top-left-radius: 1000px 200px;
  border-top-right-radius: 1000px 200px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 100px 0 100px;
}
@media only screen and (max-width: 768px){
  .sec08{
    padding: 70px 0 50px;
  }
}
.sec08 h2{
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.s08_box{
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px){
  .s08_box{
    flex-direction: column-reverse;
    width: 90%;
    padding: 0px;
    border-radius: 10px;
    gap: 20px;
  }
}
.s08_box p{
  margin-bottom: 0;
}
.s08_left{
  width: 48%;
}
@media only screen and (max-width: 768px){
  .s08_left{
    width: 90%;
    margin: 0 auto 20px;
  }
}
.s08_box p{
  line-height: 1.8;
}
.s08_box h3{
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media only screen and (max-width: 768px){
  .s08_box h3{
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.s08_box h3 span{
  font-family: 'Jost';
  padding-right: 5px;
}
.s08_right{
  width: 48%;
}
@media only screen and (max-width: 768px){
  .s08_right{
    width: 100%;
  }
}
.s08_box img{
  width: 100%;
}
@media only screen and (max-width: 768px){
  .s08_box img{
    border-radius: 10px 10px 0 0;
  }
}
@media only screen and (min-width: 769px){
  .s08_container{
    flex-direction: row-reverse;
  }
}
/*==================== sec09 ===================*/
.sec09{
  padding: 100px 0;
  margin: auto;
  width: 100%;
  text-align: center;
  background: #FDF2D4;
  height: 40vh;
}
@media only screen and (max-width: 768px){
  .sec09{
    padding: 50px 0;
    height: 150vw;
  }
}
.s09_flex{
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto;
}
@media only screen and (max-width: 768px){
  .s09_flex{
    width: 90%;
    flex-wrap: wrap;
  }
}
/* スタッフ紹介　表 */
.staff-card {
  width: 25%;
  cursor: pointer;
}
@media only screen and (max-width: 768px){
  .staff-card {
    width: 45%;
  }
}
.staff-card img{
  width: 100%;
}
.staff-card:hover img {
  transform: scale(1.1); /* ホバー時ズーム */
  transition: 0.5s;
}
.staff-thumb {
  width: 100%;
  border-radius: 8px;
}
.role {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
.name {
  font-size: 16px;
  margin: 0;
}
/* モーダル全体 */
.staff-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* 黒背景の透過 */
  justify-content: center;
  align-items: center;
}
/* モーダルの中身 */
.staff-modal-content {
  color: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.staff-modal-content img{
  max-width: 300px;
}
@media only screen and (max-width: 768px){
  .staff-modal-content img{
    max-width: 200px;
  }
}
.modal-intro{
  text-align: left;
}
/* アニメーション */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* モーダル内画像 */
.modal-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}
/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}
/*==================== sec10 ===================*/
.sec10{
  margin: 100px auto 0;
  width: 100%;
}
@media only screen and (max-width: 768px){
  .sec10{
    margin: 50px auto 0;
  }
}
.sec10 h2{
  text-align: center;
}
.table01 span{
  font-family: 'Jost';
}
.s10_flex{
  display: flex;
  justify-content: center;
  margin: 30px auto;
  max-width: 1000px;
  width: 100%;
  gap: 30px;
}
@media only screen and (max-width: 768px){
  .s10_flex{
    width: 90%;
    flex-direction:column;
  }
}
.s10_flex iframe{
  width: 40%;
}
@media only screen and (max-width: 768px){
  .s10_flex iframe{
    width: 100%;
  }
}
.table01 {
  border-top: 1px solid #D3D3D3;
  width: 50%;
  border-collapse: collapse;
}
@media only screen and (max-width: 768px){
  .table01{
    width: 100%;
  }
}
.table01 tr {
  border-bottom: 1px solid #D3D3D3;
}
.table01 th,
.table01 td {
  padding: 15px 0;
  border-bottom: 1px solid #D3D3D3;
}
.table01 th {
  width: 30%;
  font-weight: 400;
}
.satsuma{
  text-align: center;
  width: 100%;
  margin: 100px auto 0;
  line-height: 0;
}
@media only screen and (max-width: 768px){
  .satsuma{
    margin: 50px auto 0;
  }
}
.satsuma p{
  line-height: 1.8;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px){
  .satsuma h2{
    margin-bottom: 30px;
  }
  .satsuma p{
    width: 90%;
    margin: 0 auto 50px;
  }
}
.satsuma img{
  width: 100%;
}
.s10_bunner{
  display: flex;
  justify-content: center;
  gap:30px;
  margin: 0 auto 100px;
  max-width: 900px;
}
@media only screen and (max-width: 768px){
  .s10_bunner{
    flex-flow: column;
    width: 90%;
    margin: 0 auto 50px;
    gap: 20px
  }
}
.s10_bunner a{
  width: 48%;
}
@media only screen and (max-width: 768px){
  .s10_bunner a{
    width: 100%;
  }
}
.s10_bunner a:hover{
  opacity: 0.8;
  transition: 0.5s;
}
.s10_bunner img{
  width: 100%;
}
/*==================== sec11 safety ===================*/
.sec11{
  margin: 50px auto 100px;
  max-width: 1000px;
}
@media only screen and (max-width: 768px){
  .sec11{
    margin: 30px auto 50px;
  }
}
.sec11 h2{
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px){
  .sec11 h2{
    text-align: center;
    margin-bottom: 20px;
  }
}
.s11_flex{
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 768px){
  .s11_flex{
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
}
.s11_flex img{
  width: 45%;
}
@media only screen and (max-width: 768px){
  .s11_flex img{
    width: 100%;
    border-radius: 3px;
  }
}
.s11_flex p{
  width: 45%;
  line-height: 1.8;
}
@media only screen and (max-width: 768px){
  .s11_flex p{
    width: 100%;
    margin: 0 auto;
  }
}
.s11_02{
  width: 100%;
  max-width: 940px;
  margin: 50px auto 0;
  background: #fff;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 20px 20px 0px 0px rgba(248, 232, 225, 1),-2px -2px 10px 0px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 768px){
  .s11_02{
    width: 80%;
    margin: 40px auto 0;
    padding: 20px;
    box-shadow: 10px 10px 0px 0px rgba(248, 232, 225, 1),-2px -2px 10px 0px rgba(0, 0, 0, 0.05)
  }
}
.s11_02 p{
  margin: 0 auto 30px;
  line-height: 1.8;
}
.s11_02 p span{
  font-family: 'Jost';
}
/*==================== sec12 ===================*/
.sec12{
  background: #FDF2D4;
  padding: 100px 0;
  width: 100%;
}
@media only screen and (max-width: 768px){
  .sec12{
    padding: 50px 0;
  }
}
.sec12 h2{
  text-align: center;
}
.s12_box{
  width: 100%;
  max-width: 900px;
  margin: 70px auto 30px;
  padding: 70px 50px 50px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #DB5331;
}
@media only screen and (max-width: 768px){
  .s12_box{
    width: 90%;
    padding: 50px 0 30px;
    margin: 40px auto 30px;
  }
}
.s12_box img{
  width: 48%;
  height: 48%;
}
@media only screen and (max-width: 768px){
  .s12_box img{
    width: 90%;
    display: block;
    margin: auto;
  }
}
.s12_title{
  position: absolute;
  top: -4.5%;
  right: 0;
  left: 0;
  background: #DB5331;
  border-radius: 100px;
  width: 350px;
  height: 60px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px){
  .s12_title{
    top: -2%;
    font-size: 18px;
    width: 280px;
    height: 40px;
  }
}
.s12_title span{
  font-family: 'Jost';
  font-size: 30px;
  padding-right: 20px;
}
@media only screen and (max-width: 768px){
  .s12_title span{
    font-size: 25px;
  }
}
.s12_flex{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px){
  .s12_flex{
    flex-direction: column;
  }
}
.s12_left{
  width: 50%;
}
@media only screen and (max-width: 768px){
  .s12_left{
    width: 90%;
    margin: auto;
  }
}
li{
  list-style: none;
}
.List-Item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .List-Item {
    border-top: 0;
  }
}
.List-Item:nth-of-type(1) {
  border-top: 0;
}
.List-Item-Content {
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .List-Item-Content {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
}
.List-Item-Content.one {
  padding-top: 0;
}
.List-Item-Content-Number {
  position: relative;
  margin-right: 20px;
  border-radius: 100%;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background: #DB5331;
  color: #fff;
  font-size: 25px;
  font-family: 'Jost';
}
@media screen and (max-width: 768px) {
  .List-Item-Content-Number {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
}
.Item{
  width: 80%;
  margin-top: 10px;
}
@media screen and (max-width: 768px){
  .Item{
    margin-top: 5px;
  }
}
.List-Item-Content-Title {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px){
  .List-Item-Content-Title {
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.List-Item-Content-Description {
  line-height: 1.8;
  font-size: 16px;
}
@media screen and (max-width: 768px){
  .List-Item-Content-Description {
    font-weight: normal;
    font-size: 14px;
  }
}
.inline_c{
  display: flex;
  justify-content: center;
}
.arrow {
  display: inline-block;
  width: 200px;
  height: 100px;
  background: #f9c83d;
  clip-path: polygon(0 42.6%, 21.7% 42.6%, 21.7% 0, 78.3% 0, 78.3% 42.6%, 100% 42.6%, 50% 100%);
}
@media screen and (max-width: 768px){
  .arrow{
    width: 100px;
    height: 50px;
  }
}
@media screen and (max-width: 768px){
  .mt50{
    margin: 50px auto 30px;
  }
}

 /*================ 記事アーカイブ ====================*/
 .arcive{
  padding: 150px 0;
  width: 100%;
  background: #FDF2D4;
}
@media only screen and (max-width: 768px){
  .arcive{
    padding: 100px 0;
  }
}
 .news_re a{
  margin: 50px auto 0;
  color: #B81C23;
 }
 .mb100{
  margin-bottom: 100px;
 }
  /*================ thanks ====================*/
.thanks{
  margin: 180px auto 100px;
  text-align: center;
}
@media only screen and (max-width: 768px){
  .thanks{
    width: 90%;
    margin: 100px auto;
  }
}
.thanks .button02 a{
  margin: 50px auto 0;
}

/*================ フォーム ====================*/
.form{
  width: 100%;
  max-width: 600px;
  margin: 100px auto;
}
@media only screen and (max-width: 768px){
  .form{
    max-width: 100%;
    width: 90%;
    margin: 50px auto;
  }
}
.form h2{
  text-align: center;
}
.privacy{
  text-align: center;
  font-size: 12px;
}
.form a{
  border-bottom: 1px solid #333;
}
.form a:hover{
  opacity: 0.8;
  transition: 0.5s;
}
/* フォーム全体のスタイル */
.wpcf7 {
  padding: 0;
  border-radius: 10px;
  max-width: 600px;
  margin: 30px auto 0;
  }
  @media only screen and (max-width: 768px){
    .wpcf7{
      max-width: 100%;
      padding: 0;
    }
  }
  /* ラベルのスタイル */
  .wpcf7-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333333;
  }
  /* 必須フィールドのラベルスタイル */
  .wpcf7-form .required {
  color: #B81C23;
  padding: 0px 5px;
  font-size: 14px;
  }
  .wpcf7 input{
    height: 30px;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 3px;
    width: 100%;
    max-width: 558px;
    margin-top: 10px;
    font-size: 16px;
  }
  @media only screen and (max-width: 768px){
    .wpcf7 input{
      max-width: 100%;
      width: 88%;
    }
  }
  /* インプットフィールドのスタイル */
  .wpcf7-form textarea {
  width: 100%;
  max-width: 558px;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 3px;
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 16px;
  background-color: #ffffff; /* 白 */
  }
  @media only screen and (max-width: 768px){
    .wpcf7-form textarea{
      max-width: 100%;
      width: 88%;
    }
  }
  /* テキストエリアのスタイル */
  .wpcf7-form textarea {
  height: 150px;
  resize: vertical;
  }
  /* 送信ボタンのスタイル */
  .wpcf7-form input[type="submit"] {
  background-color: #B81C23;
  border-radius: 100px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  font-size: 18px;
  max-width: 250px;
  margin: auto;
  height: 50px;
  display: block;
  }
  .wpcf7-form input[type="submit"]:hover {
  background-color: #fff;
  outline: 1px solid #B81C23;
  color: #B81C23;
  }
  /* エラーメッセージと成功メッセージのスタイル */
  .wpcf7-form .wpcf7-not-valid-tip {
    color: #B81C23;
  font-size: 14px;
  }
  .wpcf7-form .wpcf7-mail-sent-ok {
  color: green;
  font-size: 16px;
  margin-bottom: 20px;
  }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  background: #F9C83D;
}
/* 全体共通のプレースホルダーの色設定 */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #999; /* ここで色を変更（例：グレー） */
  opacity: 0.7;  /* プレースホルダーをはっきり見せる */
  font-weight: 300;
}
.annotation{
  font-size: 12px;
  text-align: left;
}
.annotation span{
  color: #B82132;
}
/*================ プライバシーポリシー ====================*/
.privacy_policy{
  width: 100%;
  max-width: 1000px;
  margin: 180px auto;
}
@media only screen and (max-width: 768px){
  .privacy_policy{
    width: 90%;
    margin: 100px auto 50px;
  }
}
.privacy_policy h2{
  text-align: center;
  margin-bottom: 30px;
}
/*================ FAQ ====================*/
.faq{
  width: 100%;
  max-width: 1000px;
  margin: 100px auto 0px;
}
@media only screen and (max-width: 768px){
  .faq{
    margin: 30px auto 0;
  }
}
.faq h2{
  text-align: center;
  margin-bottom: 30px;
}
.faq h3{
  max-width: 800px;
  font-weight: 400;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 768px){
  .faq h3{
    width: 90%;
  }
}
.faq h3 span{
  color: #DB5331;
}
/* アコーディオン */
.accordion{
  max-width: 800px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px){
  .accordion{
    width: 90%;
    margin: 0 auto 30px;
  }
}
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #F8937A;
  color: #fff;
  border-radius: 3px;
  padding: 15px 45px 15px 20px;
  margin: 20px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 768px){
  .accordion-header{
    text-indent: -1.8em;
    padding-left: 3em;
  }
}
.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#fff;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}
.accordion-content {
  background-color: #FFF;
  padding: 15px 20px;
  font-size: 14px;
}
.accordion-header span
/*.accordion-content span*/{
  padding-left: 30px;
  position: relative;
}
@media only screen and (max-width: 768px){
  .accordion-header span{
    padding-left: 25px;
  }
}
.accordion-header span::before{
  position: absolute;
  content:"Q";
  top: 50%;
-webkit-transform : translateY(-50%);
transform : translateY(-50%);
  left: 0;
  color: #fff;
  font-size: 25px;
  font-family: 'Jost';
}
@media only screen and (max-width: 768px){
  .accordion-header span::before{
    left: 22px;
  }
}
/*.accordion-content span::before{
  position: absolute;
  content:"A";
  top: -25%;
  left: 0;
  color: #151E2F;
  font-size: 25px;
}*/
/* hover */
.accordion-header:hover {
  opacity: 0.8;
  transition: 0.5s;
}
/*================ 取材・視察について ====================*/
.interview{
  max-width: 1000px;
  width: 100%;
  margin: 100px auto;
  text-align: center;
}
@media only screen and (max-width: 768px){
  .interview{
    margin: 50px auto;
  }
}
.interview p{
  line-height: 1.8;
}
@media only screen and (max-width: 768px){
  .interview h2{
    margin-bottom: 30px;
  }
  .interview p{
    width: 90%;
    margin: auto;
    text-align: left;
  }
}
.career{
  width: 100%;
  background: #DB5331;
  padding: 50px 0;
}
@media only screen and (max-width: 768px){
  .career{
    padding: 30px 0;
  }
}
.c_box{
  background: #fff;
  max-width: 1000px;
  border-radius: 10px;
  padding: 30px;
  margin: auto;
}
@media only screen and (max-width: 768px){
  .c_box{
    width: 85%;
    padding: 10px 10px 30px;
  }
}
.c_box h4{
  font-size: 16px;
  font-weight: 400;
}
.c_box h3{
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.c_flex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin: auto;
}
@media only screen and (max-width: 768px){
  .c_flex{
    display: block;
  }
}
.c_left{
  width: 25%;
}
@media only screen and (max-width: 768px){
  .c_left{
    width: 80%;
    display: block;
    margin: 0 auto 30px;
  }
}
.c_left img{
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}
.c_left p{
  text-align: center;
}
/*経歴表*/
.qualification{
  width: 85%;
  background: #F8937A;
  border-radius: 5px;
  padding: 15px;
}
@media only screen and (max-width: 768px){
  .qualification{
    width: 90%;
    padding: 10px;
  }
}
.qualification h4{
  width: 150px;
  margin: auto;
  background: #fff;
  border-radius: 60px;
  text-align: center;
}
.qualification p{
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.c_right{
  width: 70%;
}
@media only screen and (max-width: 768px){
  .c_right{
    width: 90%;
    margin: auto;
  }
}
.c_right p{
  font-size: 12px;
}
.flex-schedule {
  list-style: none;
  margin: 0 auto 0 0;
  box-sizing: border-box;
}
.flex-schedule li {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.flex-schedule .area {
  padding: 0 10px 10px;
  display: block;
  width: 100%;
  border-left: 6px solid #DB5331;
}
@media only screen and (max-width: 768px){
  .flex-schedule .area {
    padding: 0 0 10px 10px;
    border-left: 3px solid #DB5331;
  }
}
.flex-schedule li .time {
  display: inline-flex;
  justify-content: flex-end;
  flex-basis: 5em;
  max-width: 5em;
  margin-right: 1em;
  margin-top: 15px;
}
@media only screen and (max-width: 768px){
  .flex-schedule li .time{
    margin-top: 16px;
    margin-right: 12px;
  }
}
.flex-schedule .sch_box {
  position: relative;
  min-height: 1em;
  padding-left: 10px;
  border-radius: 6px;
}
.flex-schedule .sch_box::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 3px;
  background: #DB5331;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}
@media only screen and (max-width: 768px){
  .flex-schedule .sch_box::before {
    left: -18.5px;
    width: 15px;
  height: 15px;
  top: 5px;
  }
}
.flex-schedule .sch_title {
  font-size: 16px;
}
@media only screen and (max-width: 768px){
  .flex-schedule .sch_title {
    font-size: 14px;
  }
}
.flex-schedule .sch_tx {
  font-size: 12px;
  font-weight: normal;
}
/*トピックス*/
.topics{
  width: 100%;
  background: #FDF2D4;
  padding: 100px 0;
}
@media only screen and (max-width: 768px){
  .topics{
    padding: 50px 0;
  }
}
.topics h2{
  text-align: center;
}
.topics_box{
  background: #fff;
  border-radius: 3px;
  padding: 30px;
  max-width: 500px;
  margin: 20px auto 50px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px){
  .topics_box{
    width: 80%;
    padding: 20px;
    margin: 20px auto 30px;
  }
}
.topics_price{
  background: #fff;
  padding: 0 0 20px 0;
  border-radius: 3px;
  max-width: 560px;
  margin: 20px auto;
}
@media only screen and (max-width: 768px){
  .topics_price{
    width: 90%;
  }
}
.p_yellow{
  text-align: center;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  background: #F9C83D;
  font-size: 20px;
  margin-bottom: 20px;
  border-radius: 3px 3px 0 0;
}
@media only screen and (max-width: 768px){
  .p_yellow{
    font-size: 18px;
  }
}
.price{
  font-size: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px){
  .price{
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.price span{
  font-family: 'Jost';
}
.topics_price p{
  text-align: center;
  padding: 0 20px;
}
@media only screen and (max-width: 768px){
  .topics_price p{
    width: 90%;
    margin: auto;
    text-align: left;
  }
}