/*------------------------------------------------------------
共通項目
------------------------------------------------------------*/

@media screen and (min-width: 770px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}


/*----------------------- ヘッダー --------------------------*/
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/*----------------------- フォント --------------------------*/
.weight100	{
    font-weight:100
}

.weight300	{
	font-weight:300
}

.weight400	{
	font-weight:400
}

.weight500	{
	font-weight:500
}

.weight600	{
	font-weight:600
}

.weight700	{
	font-weight:700
}

.weight900	 {
    font-weight:900
}

.header {
  position: absolute; /* または fixed（スクロールしても上に固定したいなら） */
  background: rgba(255, 102, 0, 0.85); /* オレンジで少し透明 */
  color: white;
  padding: 20px 20px;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center; /* ロゴを縦中央に */
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.logo {
  flex-shrink: 0;
  margin-right: 20px;
}
.logo img {
  height: 60px; /* 上下段の中央を取るように調整 */
  object-fit: contain;
  display: block;
}

/* メニューエリア */
.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
}

/* 上段リンク */
.top-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.top-links a {
  color: white;
  /* font-size: 14px; */
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

/* お問合せアイコン */
.icon-mail {
  position: relative;
  padding-left: 24px; /* アイコン分の余白 */
  background: none !important;
}

.icon-mail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url('../img/mail.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ログインリンクだけスタイル変更 */
.login-link {
  background: white;
  color: #000;
  padding: 2px 8px;
  border-radius: 7px;
  border: 1px solid #94111C;
}
.top-links .login-link a{
  color: #000000;
  text-decoration: none;
}

/* ログインアイコン */
.icon-login {
  position: relative;
  padding-left: 15px; /* アイコン分の余白 */
  background: none !important;
}

.icon-login::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  width: 10px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url('../img/icon-login.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 下段リンク */
.bottom-menu {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  flex: 0 0 130px; /* すべて130px幅に固定 */
}

.nav-list a {
  display: block;
  background-color: #5b4a35; /* 背景色 */
  color: white;
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  text-decoration: none;
  /* font-size: 14px; */
  font-size: 16px;
  transition: background-color 0.3s;
  width: 100%; /* li の幅いっぱいに */
  box-sizing: border-box;
}

.nav-list a:hover {
  background-color: #7a6042;
}


/* ハンバーガーメニュー：スマホ用 */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  padding: 10px;
}

#menu-toggle {
  display: none;
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 102, 0, 0.95);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.mobile-menu li {
  margin-bottom: 15px;
  padding-bottom:10px;
  border-bottom:1px dotted #fff;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* チェックボックスがチェックされたら表示 */
#menu-toggle:checked ~ .mobile-menu {
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
.logo img {
  height: 50px;
  object-fit: contain;
  display: block;
}
  .menu-wrapper {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .header-inner {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

/*----------------------- common-main-title  --------------------------*/
.common-main-title {
  /* font-size: 50px; */
  font-size: clamp(2rem, 1.775rem + 1.125vw, 3.125rem);
  font-weight: 900;
  color: #EA7806;
}


/*----------------------- ボタン --------------------------*/
/* btn01 三角右向き */
.btn01{
display: inline-block;
background-color: #fff; /* 背景白 */
width:200px;
border: 1px solid #EA7806;
padding: 16px 16px;
color: #333;
text-decoration: none;
position: relative;
font-size:14px;
font-weight:bold;
transition: background-color 0.3s, color 0.3s;
}

.btn01::before{
content: "";
display: inline-block;
width: 0;
height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 8px solid #EA7806;
margin-right: 8px;
vertical-align: middle;
}

.btn01:hover {
background-color: #EA7806;
color: white;
}

.btn01:hover::before {
border-left-color: white;
}

/* btn02 三角下向き */
.btn02 {
  display: inline-block;
  background-color: #fff;
  /* width: 220px; */
  width: 290px;
  border: 2px solid #EA7806;
  /* padding: 16px 16px; */
  padding: 20px 10px 20px 30px;
  color: #333;
  text-decoration: none;
  position: relative;
  /* font-size: 14px; */
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  text-align: left;
}

.btn02::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #EA7806; /* ▼下向き */
  margin-right: 8px;
  vertical-align: middle;
}

.btn02:hover {
  background-color: #EA7806;
  color: white;
}

.btn02:hover::before {
  border-top-color: white;
}

/* btn03 三角下向き */
.btn03 {
  display: inline-block;
  padding: 5px 16px;
  color: #333;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}

.btn03::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #EA7806; /* ▼下向き */
  margin-right: 8px;
  vertical-align: middle;
}

/*----------------------- マージン --------------------------*/
.marb0{
margin-top:0px;
}
.marb5{
margin-top:5px;
}
.marb10{
margin-top:10px;
}
.marb20{
margin-top:20px;
}
.marb30{
margin-top:30px;
}
.marb40{
margin-top:40px;
}
.marb50{
margin-top:50px;
}


/*----------------------- 表示調整 --------------------------*/
@media screen and (min-width: 770px) {
  .pcNone {
    display: none !important
  }
}

@media screen and (max-width: 769px) {
  .spNone {
    display: none !important
  }
}
.line-break {
  display: inline-block;
}

/*------------------------------------------------------------
トップページ
------------------------------------------------------------*/

/*----------------------- メインビジュアル --------------------------*/
#mv {
  background-image: url('../img/mv_pc.jpg');
  background-size: contain;        /* 全体が収まるように縮小 */
  background-repeat: no-repeat;
  background-position:top center;     /* 真ん中に寄せる */
  z-index: 0;
}

@media (max-width: 768px) {
#mv {
  background-image: url('../img/mv_sp.jpg');
  background-size: cover;
}
}

.main-visual {
  /* width: 1200px; */
  /* height: 600px; */
  min-height: 800px;
  height: calc(100vh - 120px);
  margin:0 auto;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
.main-visual {
  width: 100%;
  min-height: 600px;
  height: 600px;
  margin:0 auto;
}
}

.main-visual > h2 {
  width: 1200px;
  margin:0 auto;
}

.decoration {
  /*width: 400px;*/ /* 模様のサイズ調整 */
  width: 500px;
  max-width: 90%;
  z-index: 1;
  /* margin-top:7%; */
  margin-bottom: 7%;
  /* margin-left:5%; */
}
@media (max-width: 1024px) {
.decoration {
  width: 300px; /* 模様のサイズ調整 */
  max-width: 80%;
}
}
@media (max-width: 768px) {
.decoration {
  width: 400px; /* 模様のサイズ調整 */
  max-width: 80%;
  z-index: 1;
  /* margin-top:50%;
  margin-left:7%; */
}
}


/*----------------------- 食のあらゆる要望に応え、施設様をサポート --------------------------*/

.support-section {
  background-image: url('../img/support_bg.png');
  background-size: cover;
  background-position: center;
  /* margin:150px 0 0 0; */
  margin-top: 120px;
  min-height: 710px;
  /* position: relative; */
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
.support-section {
  margin:0;
}
}
@media (max-width: 768px) {
.support-section {
  /* min-height: 650px; */
  margin-top: 60px;
  padding-bottom: 60px;
  min-height: inherit;
}
}

.support-inner {
  /* max-width: 1000px; */
  max-width: 1200px;
  margin: 0 auto;
  /* position: relative; */
  display: flex;
  align-items: flex-start; /* 上寄せ */
  justify-content: flex-start; /* 左寄せ */
}

@media (max-width: 768px) {
.support-inner {
  max-width: 90%;
}
}

/* .gr-bg {
  display: none;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 550px;
  height: 320px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 50px;
  z-index: 0;
  border-radius: 0px;
} */

/* @media (max-width: 768px) {
.gr-bg {
  position: absolute;
  width: 80%!important;
  height: 470px;
  display: none;
}
} */

.support-content {
  position: relative;
  background-color: #fff;
  /* padding: 50px;
  max-width: 550px; */
  /* height: 320px; */
  padding: 60px;
  max-width: 625px;
  z-index: 2;
  box-shadow: 20px 20px 0 rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
.support-content {
  /* width: 80%!important; */
  /* height: 470px; */
  /* padding: 40px 0important; */
  padding: 30px;
}
}

.support-content h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
.support-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
}
.support-content p {
  line-height: 2;
  margin-bottom: 40px;
}


/*----------------------- メリット --------------------------*/

.merit-section {
  background-image: url("../img/merit_bg.jpg"); /* オレンジ円背景画像 */
  background-size: cover;
  background-position:top center;
  text-align:center;
  padding: 80px 20px;
}

.center-line {
  width: 200px;
  height: 2px;
  background-color: #000;
  margin: 0 auto;
}

.center-line180 {
  width: 180px;
  height: 2px;
  background-color: #000;
  margin: 0 auto;
}

.merit-inner {
  /* max-width: 1100px; */
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
}

.merit-inner h2 {
  /* font-size: 32px; */
  /* font-size: 50px; */
  color: #EA7806;
}

.merit-inner .subtitle {
  /* font-size: 15px; */
  font-size: 20px;
  font-weight: 900;
  margin: 0em 0 1.5em 0;
}

.merit-desc {
  /* font-size: 14px; */
  line-height: 2;
  margin-top:20px;
  margin-bottom: 40px;
}

.merit-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  /* gap: 24px; */
  /* max-width: 1000px; */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.merit-box {
  /*width: calc(25% - 24px);*/ /* PC時：4列（gap差し引く） */
  width: calc(100% / 4 - 15px);
  /* min-width: 200px; */
  min-height: 230px;
  background: #E37508;
  /* border: 10px solid #E37508; */
  /* border-radius: 16px; */
  /* overflow: hidden; */
  border-radius: 25px;
  text-align: center;
  box-sizing: border-box;
  /* font-size: 14px; */
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  padding: 10px 23px 23px 23px;
}
@media screen and (max-width: 1040px) {
  .merit-box {
    width: calc(100% / 3 - 15px);
  }
}


@media screen and (max-width: 768px) {
.merit-grid {
    gap: 12px; /* gapを小さく */
  }
  .merit-box {
    width: calc(50% - 12px); /* 2列 */
    min-width: 100px;
  }

  /* 奇数個で最後だけ中央にしたい時 */
  .merit-grid:has(.merit-box:nth-last-child(1):nth-child(odd)) {
    justify-content: center;
  }
}
.merit-title {
  background-color: #E37508;
  color: white;
  /* padding: 8px 0; */
  /* font-weight: bold; */
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  width: 100%;
}

.merit-body {
  padding: 15px;
  background: white;
  /* border-radius: 16px; */
  /* width: 100%; */
  border-radius: 8px;
  flex: 1;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.merit-body img {
  /* width: 80px; */
  width: 100px;
  height: auto;
  margin-bottom: 0px;
}

.merit-body p {
  margin-bottom: 10px;
  /* font-size: 14px; */
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.merit-body .subtxt{
/* font-size:10px; */
  font-size: 11px;
  display: block;
  line-height: 1;
}

@media screen and (max-width: 560px) {
  .merit-box {
    width: 80%;
    min-width: 300px;
  }
}


/*----------------------- Product --------------------------*/
/* セクション全体 */
.product-section {
  background-color: #fce9d9;
  padding: 80px 20px;
  text-align: center;
}

/* タイトルまわり */
.product-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.product-title h2 {
  /* font-size: 32px; */
  /* font-size: 50px; */
  /* color: #f47c00; */
  margin-bottom: 8px;
}

.product-title p {
  /* font-size: 15px; */
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

.product-title p::after {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background: #000;
  margin: 1.5em auto 0;
}

.illust {
  /* height: 100px; */
  height: 140px;
  width: auto;
}

.illust img {
  /* height: 100px; */
  height: 140px;
  width: auto;
}

/* 商品一覧グリッド */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  /* gap: 24px; */
  /* gap: 40px; */
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  /* max-width: 1600px; */
  margin: 0 auto;
}

/* 商品ボックス */
.product-box {
  position: relative;
  /* width: calc(25% - 24px); */
  /* width: calc(100% / 4 - 30px); */
  width: calc(100% / 4 - 15px);
  min-width: 220px;
  overflow: hidden;
}

.product-box a:hover{
	opacity:0.7;
	transition:0.3s;
}

.product-box img {
  width: 100%;
  display: block;
  height: auto;
}

/* 半透明ラベル */
.product-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 160px;
  height: 160px; */
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* font-size: 16px; */
  /* font-size: 22px; */
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
  /* font-weight: bold; */
  font-weight: 700;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.supplement {
  display: block;
  font-size: 0.7em;
}

/* 色ごとのクラス */
.product-label.orange {
  /* background-color: rgba(209, 72, 21, 0.7); */
  background-color: rgba(227, 117, 8, 0.85);
}
.product-label.blue {
  /* background-color: rgba(0, 153, 255, 0.7); */
  background-color: rgba(27, 153, 201, 0.85);
}
.product-label.green {
  /* background-color: rgba(0, 153, 51, 0.7); */
  background-color: rgba(137, 179, 64, 0.85);
}
.product-label.red {
  /* background-color: rgba(255, 51, 102, 0.7); */
  background-color: rgba(212, 95, 94, 0.85);
}

@media screen and (max-width: 960px) {
  .product-label {
    width: 160px;
    height: 160px;
    font-size: 16px;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .product-title-wrap {
    flex-direction: column;
  }

  .product-grid {
    flex-direction: column;
    gap: 16px;
  }

  .product-box {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }

  .illust {
    height: 100px;
    max-width: 90%;
  }
}



/*----------------------- Provide --------------------------*/

.provide-section {
  background-color: #eee;
  /* padding: 80px 20px; */
  padding: 80px 0;
}

.provide-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* max-width: 100%; */
  /* margin: 0 auto; */
  /* position: relative; */
  margin-left: calc(50% - 600px);
}

  /* .provide-text {
flex: 1;
  padding-right: 40px;
  min-width: 300px;
}
*/

.provide-text h2 {
  /* font-size: 32px; */
  /* font-size: 50px; */
  /* color: #EA7806; */
  margin-bottom: 8px;
  /* margin-left:0.7em; */
  text-align: center;
  display: inline-block;
}

.provide-text h2 span {
  display: block;
  /* font-size: 15px; */
  font-size: 20px;
  font-weight: 900;
  color: #333;
  /* margin-left:2em; */
}


.provide-text h2 span::after {
  content: "";
  display: block;
  /* width: 160px; */
  height: 2px;
  background: #000;
  margin: 1.5em auto;
}

/* .provide-line {
  width: 160px;
  height: 2px;
  background: #000;
  border: none;
  margin: 1.5em 0;
  display: none;
} */

.provide-text {
  width: 420px;
  /* padding-left:18%;
  z-index:1; */
  /* padding-left: calc(50% - 600px); */
}
.provide-text p {
  /* font-size: 14px; */
  line-height: 2;
  margin-bottom: 24px;
}

.provide-button {
  display: inline-block;
  border: 1px solid #EA7806;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.provide-button:hover {
  background: #EA7806;
  color: #fff;
}

/* .provide-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
} */

.provide-image {
  width: calc(100% - 420px);
}
.provide-image img {
  width: 100%;
  height: auto;
}

/* ---------- スマホ対応 ---------- */
@media screen and (max-width: 768px) {
  .provide-inner {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .provide-text {
    width: 90%;
    margin: auto;
    max-width: 100%;
    padding-left: 0;
    text-align: center
  }

  .provide-image {
    position: static;
    max-width: 90%;
    margin:50px 0 0 auto;
    width: 100%;
    /* margin-top: 100px; */
  }

  .provide-image img {
    width: 100%;
  }
  .provide-text h2 {
  /* font-size: 32px;
  color: #EA7806; */
  margin-bottom: 8px;
  margin-left:0;
  text-align:center;
}

.provide-text h2 span {
  display: block;
  font-size: 15px;
  color: #333;
  margin-left:0;
  text-align:center;
}

.provide-line {
  width: 160px;
  height: 2px;
  background: #000;
  border: none;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  margin-left:auto;
  margin-right:auto;
}
}


/*----------------------- cta --------------------------*/

.cta-section{
margin:100px 0;
}

/* ctaグリッド */
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  /* gap: 24px; */
  gap: 40px;
  justify-content: center;
  /* max-width: 1000px; */
  /* justify-content: space-between; */
  max-width: 1200px;
  margin: 0 auto;
}

/* ctaボックス */
.cta-box {
  position: relative;
  /* width: calc(30% - 24px); */
  width: calc(100% / 3 - 27px);
  min-width: 300px;
  overflow: hidden;
}

.cta-box img {
  width: 100%;
  display: block;
  height: auto;
}

.cta-box a:hover{
	opacity:0.7;
	transition:0.3s;
}

/* 半透明ラベル */
.cta-label {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 200px; */
  width: 240px;
  height: 100px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* font-size: 16px; */
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.cta-label.orange {
  /* background-color: rgba(209, 72, 21, 0.7); */
  background-color: rgba(209, 72, 21, 0.85);
}


/*----------------------- presentation --------------------------*/

.presentation-section {
  background: url("../img/presentation_bg.png") no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.presentation-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  /* max-width: 1000px; */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.presentation-text {
  /* flex: 1; */
  text-align: center;
  min-width: 250px;
}

.presentation-text h2 {
  /* font-size: 32px; */
  /* font-size: 50px; */
}

.presentation-text h2 span {
  display: block;
  /* font-size: 16px; */
  font-size: 20px;
  margin-top: 10px;
}

.presentation-line {
  width: 150px;
  height: 2px;
  background: #EA7806;
  border: none;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
}

.presentation-buttons {
  /* flex: 1; */
  text-align: center;
  box-sizing: border-box;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.presentation-btn img {
  /* width: 240px; */
  width: 320px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.presentation-btn:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.note {
  /* font-size: 14px; */
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
}

/* ------- Responsive ------- */
@media screen and (max-width: 768px) {
/* .presentation-section {
  padding: 80px 0px;
} */
  .presentation-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .presentation-text {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
  }

  .btn-row {
    flex-direction: column;

  }
  .presentation-buttons {
    flex: 1;
    width: 100%;
    min-width: auto; /* ← 追加 */
}

  .presentation-btn img {
    /* max-width: 240px!important; */
    max-width: 300px;
    height: auto;
  }
}


/*----------------------- youtube --------------------------*/
.youtube-section{
  width:100%;
}
.youtubeimage{
    /* width:600px; */
    max-width: 866px;
    width: 90%;
    margin-left:auto;
    margin-right:auto;
    padding:80px 0;
}
.youtubeimage img{
    width:100%;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.25);
}

@media screen and (max-width: 768px) {
.youtubeimage{
    width:90%;
    margin-left:auto;
    margin-right:auto;
    padding:80px 0;
}
}


/*----------------------- contact --------------------------*/

.contact-section {
  text-align: center;
  padding: 50px 20px 150px;
  /* padding: 20px; */
  margin:30px 0 100px 0;
  position: relative;
  background: url("../img/contact-circle.png") no-repeat center center;
  background-size:contain;
}

.contact-inner {
  /* max-width: 1000px; */
  max-width: 1200px;
  margin: 0 auto;
  /* position: relative; */
  z-index: 1;
}

/* Header with background circle image */
.contact-header {
  /* position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  /* margin-top:50px; */
}

.contact-bg {
  width: 400px;
  height: auto;
  border-radius: 50%;
  display: block;
}

.contact-texts {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  color: #333;
  text-align: center;
  z-index: 2;
  /* padding-bottom: 90px; */
  height:auto;
}

.contact-texts h2 {
  /* font-size: 32px; */
  /* font-size: 50px;
  color: #EA7806; */
  margin: 0;
}

.contact-texts .sub {
  /* font-size: 15px; */
  font-size: 20px;
  font-weight: 900;
  margin: 0px 0 20px 0;
}

.contact-texts .contact-desc {
  /* font-size: 14px; */
  font-size: 22px;
  margin-top: 40px;
  /* font-weight:bold; */
  font-weight: 700;
}

/* Contact boxes */
.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 24px; */
  gap: 40px;
  /* padding-top: 30px; */
}

.contact-box {
  /* border: 5px solid #EA7806; */
  border: 7px solid #EA7806;
  padding: 20px;
  /* width: 300px; */
  width: calc(100% / 3 - 27px);
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  position: relative;
}

.contact-box .label {
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  padding-left: 42px;
  padding-top: 8px;
  display: inline-block;
  text-align: left;
  text-decoration: underline;
  font-size: 20px;
}

.contact-box .label a {
  color:#000;
}

.contact-box.tel .label::before {
  content: "";
  background: url("../img/tel-icon.png") no-repeat center/contain;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-box.fax .label::before {
  content: "";
  background: url("../img/fax-icon.png") no-repeat center/contain;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-box a.number {
  display: block;
  text-decoration: none;
}

.contact-box .number {
  /* font-size: 27px; */
  font-size: 40px;
  font-weight: 900;

  color: #333;
  padding:5px 0;
}
.contact-box .number2 {
  /* font-size: 27px; */
  font-size: 40px;
  font-weight: 900;

  color: #333;
  padding:25px 0 10px 0;
}

.contact-box .time {
  /* font-size: 12px; */
  font-size: 15px;
  color: #666;
  margin-top: 0px;
  line-height: 1.1;
}

.contact-box.mail .label {
  padding-left: 0;
  text-align: center;
}

.contact-box.mail .mail-image {
  background: url("../img/mail-combined.png") no-repeat center/contain;
  width: 100px;
  height: 36px;
  margin: 12px auto 0;
}

/* ---------- スマホ対応 ---------- */

@media screen and (max-width: 1600px) {
  .contact-boxes {
    gap: inherit;
    justify-content: space-between;
  }
  .contact-box {
    width: calc(100% / 3 - 15px);
  }
  .contact-box .label {
    font-size: clamp(1rem, 0.8136rem + 0.3636vw, 1.25rem);
    line-height: 1.2;
  }
  .contact-box .number,
  .contact-box .number2 {
    font-size: clamp(1.5rem, 0.7545rem + 1.4545vw, 2.5rem);
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding-bottom: 30px;
  }
  .contact-header {
    margin-top:0px;
  }

  .contact-boxes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-box {
    width: 90%;
    max-width: 300px;
  }
  .contact-bg {
    width: 200px;
  }

  /* .contact-texts {
  padding-bottom: 150px;
} */
}



/*----------------------- footer --------------------------*/
.footer {
  background-color: #f5f5f5;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  /*align-items: flex-start; *//* 上揃え */
  justify-content: flex-start; /* 左寄せ */
 /* gap: 10px; *//* ロゴとの最小の余白 */
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


.footer-logo img {
  /* max-height: 40px; */
  max-height: 70px;
}

.footer-address {
  text-align: left;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.9167rem + 0.1736vw, 1.125rem);
  line-height: 1.2;
}

.footer-nav {
  background-color: #ec6c00;
  display: flex;
  /* justify-content: space-between; */
  padding: 40px 40px 40px 0;
  flex-wrap: wrap;
  color: #fff;
  text-align: left;
  /* max-width: 1200px; */
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  /* margin: 0 20px; */
  margin: 0 30px;
  /* margin: 0 40px; */
  border-left: 1px solid #fff;
  /* padding-left: 20px; */
  padding-left: 40px;
  text-align: left;
}

.footer-nav ul:first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 20px;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav li a {
  color:#fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-bottom {
  background-color: #ec6c00;
  width:100%;
}

.footer-bottom2 {
  background-color: #ec6c00;
  text-align: center;
  color: #fff;
  padding: 16px 0;
  font-size: 12px;
  width:100%;
}

/* ---------- スマホ対応 ---------- */
@media screen and (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .footer-logo img {
    max-height: 40px;
  }
  .footer-nav {
    flex-direction: column;      /* スマホでは縦並び */
    padding: 20px 16px;          /* 横幅を抑えたパディングに調整 */
    box-sizing: border-box;      /* パディング込みで幅を計算 */
  }
  .footer-address {
    text-align: left;
  }
  .footer-nav ul:first-child {
    padding-left: 0;
  }
  .footer-nav ul {
    margin-bottom: 24px;
    width: 100%;
  }

  .footer-nav ul {
    border: none;
    padding: 0;
    margin: 16px 0;
  }
}


/*----------------------- floating-buttons --------------------------*/
.floating-buttons {
  position: fixed;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
}

.button-img {
  /* width: 180px; */
  height: auto;
  width: 290px;
  /* margin: 1px 0; */
  cursor: pointer;
}

.close-btn {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  cursor: pointer;
}

@media screen and (max-width: 1600px) {
  .button-img {
    width: 200px;
  }
}


@media screen and (max-width: 1200px) {
  .button-img {
    width: 180px;
  }
}

@media screen and (max-width: 768px) {
  .floating-buttons {
    right: -20px;
    bottom: 90px;
    /* right: 0; */
    transform: inherit;
  }
  .floating-buttons a {
    display: block;
    height: 62px;
  }

  .button-img {
    width: 175px;
  }
  .close-btn {
      margin-right: 30px;
  }
}

/*----------------------- トップへ戻るボタン --------------------------*/
html {
  scroll-behavior: smooth;
}

#to-top-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: block;
}

#to-top-button img {
  width: 50px; /* 画像サイズに合わせて調整 */
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #to-top-button {
    right: 15px;
    bottom: 15px;
  }
  #to-top-button img {
    width: 40px;
  }
}
