@charset "utf-8";
/* --------------------------------------------------
	html
-------------------------------------------------- */
html, body {
  height: 100%;
  background-color: #FFFFFF;
  font-size: 1em;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
@media screen and (min-width : 1000px) {
  html, body {
    font-size: 1em;
  }
}
/* --------------------------------------------------
	img切り替え
-------------------------------------------------- */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------------
	リンク調整
-------------------------------------------------- */
#link01 {
  margin-top: -50px;
  padding-top: 50px;
}
@media only screen and (min-width: 1000px) {
  #link01 {
    margin-top: -50px;
    padding-top: 50px;
  }
}
/* --------------------------------------------------
	float
-------------------------------------------------- */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.img-right {
  float: right;
}
.img-left {
  float: left;
  margin: 20px;
}
/* --------------------------------------------------
	margin
-------------------------------------------------- */
.ma_top_10 {
  margin-top: 10px;
}
.ma_top_20 {
  margin-top: 20px;
}
.ma_top_30 {
  margin-top: 30px;
}
.ma_top_40 {
  margin-top: 40px;
}
.ma_top_50 {
  margin-top: 50px;
}
.ma_bottom_10 {
  margin-bottom: 10px;
}
.ma_bottom_20 {
  margin-bottom: 20px;
}
.ma_bottom_30 {
  margin-bottom: 30px;
}
.ma_bottom_40 {
  margin-bottom: 40px;
}
.ma_bottom_50 {
  margin-bottom: 50px;
}
.ma_left_10 {
  margin-left: 10px;
}
.ma_left_20 {
  margin-left: 20px;
}
.ma_left_30 {
  margin-left: 30px;
}
.ma_left_40 {
  margin-left: 40px;
}
.ma_left_50 {
  margin-left: 50px;
}
/* --------------------------------------------------
	font_size
-------------------------------------------------- */
.fs_d {
  font-size: 14px;
  line-height: 170%;
}
@media screen and (min-width : 1000px) {
  .fs_d {
    font-size: 14px;
  }
}
.fs_db {
  font-size: 16px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_db {
    font-size: 16px;
  }
}
.fs_big {
  font-size: 44px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (min-width : 960px) {
  .fs_big {
    font-size: 55px;
  }
}
.fs_ttl {
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.5em;
  border-bottom: 2px solid #E5E5E5;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (min-width : 960px) {
  .fs_ttl {
    font-size: 26px;
    line-height: 170%;
    font-weight: bold;
    letter-spacing: 0.5em;
  }
}
.fs_ttl2 {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.5em;
  color: #999999;
}
.fs_db_4 {
  font-size: 1.5em; /* 少し大きめのサイズ */
  font-family: "Times New Roman", serif; /* 明朝体の指定 */
  line-height: 1.5; /* 読みやすくするための行間 */
}
/* --------------------------------------------------
	font_color
-------------------------------------------------- */
.red {
  color: #C00;
}
.pink {
  color: #F69;
  font-weight: bold;
}
.blue {
  color: #9ac82e;
  font-weight: bold;
}
.white {
  color: #FFF;
  font-weight: bold;
}
.yellow {
  color: #FAFA03;
  font-weight: bold;
}
.green {
  color: #28AA32;
  font-weight: bold;
}
.orange {
  color: #F67103;
  font-weight: bold;
}
/* --------------------------------------------------
	bg_color
-------------------------------------------------- */
.bg_red {
  background-color: #118cd2;
  color: #FFF;
}
.bg_red a {
  color: #FC0;
}
.bg_blue {
  background-color: #99ccff;
}
.bg_white {
  background-color: #fff;
}
/* --------------------------------------------------
	main_image
-------------------------------------------------- */
.flex_box {
  background-color: #ffffff;
}
@media screen and (min-width : 1000px) {
  .flex_box {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.flex_item2 {
  width: 100%;
  padding: 40px;
  color: #222; /* 文字色 */
}
@media screen and (min-width : 1000px) {
  .flex_item2 {
    width: 50%;
    padding: 20px;
    color: #222; /* 文字色 */
  }
}
.flex_item2:nth-child(1) {
  background-color: #FBFBFB; /* 背景色指定 */
}
.flex_item2:nth-child(2) {
  background-color: #fbfbfb; /* 背景色指定 */
}
/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  width: 100%;
  margin: 0 auto;
  padding-top: 3%;
  padding-bottom: 3%;
  text-align: center;
  color: #222222;
}
/* --------------------------------------------------
	hr
-------------------------------------------------- */
hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-top: 1px dashed #ccc;
}
/* --------------------------------------------------
	wrapper
-------------------------------------------------- */
#wrapper {
  color: #555;
}
@media screen and (min-width : 768px) {
  #wrapper {
    width: 100%;
  }
}
@media screen and (min-width : 1000px) {
  #wrapper {
    width: 1000px;
    margin: 0 auto;
  }
  /* --------------------------------------------------
	box
-------------------------------------------------- */
}
.box {
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .box {
    width: 90%;
    margin: 0 auto;
    padding: 2%;
  }
}
.box2 {
  margin: 0px auto;
  width: 90%;
}
@media screen and (min-width : 1000px) {
  .box2 {
    width: 70%;
    margin: 0 auto;
    padding: 2%;
  }
}
.box_gray {
  margin: 0 auto;
  background-color: #eeeeee;
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
#footer {
  background-color: #efefef;
  color: #666;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media screen and (min-width : 1000px) {
  #footer {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
#footer a {
  color: #222222;
}
.flex_item {
  padding: 2%;
  color: #222;
}
.copy {
  background-color: #016dbf;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  padding-top: 2%;
  padding-bottom: 2%;
}
/* --------------------------------------------------
	レイアウト
-------------------------------------------------- */
.layout {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .layout {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item {
  width: 100%;
  padding: 20px;
  background-color: #f5f5f5;
}
@media screen and (min-width : 1000px) {
  .item {
    width: 460px;
  }
}
.vision {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .vision {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item2 {
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item2 {
    width: 700px;
  }
}
.item3 {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item3 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 260px;
  }
}
.btn {
  display: inline-block;
  border-radius: 5%; /* 角丸       */
  font-size: 16pt; /* 文字サイズ */
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 0.5em 2em; /* 余白       */
  background: #ff6600; /* 背景色     */
  color: #ffffff; /* 文字色     */
  line-height: 1em; /* 1行の高さ  */
  transition: .3s; /* なめらか変化 */
  box-shadow: 2px 2px 1px #ccc; /* 影の設定 */
  border: 2px solid #ff6600; /* 枠の指定 */
}
.btn:hover {
  box-shadow: none; /* カーソル時の影消去 */
  color: #ff7700; /* 背景色     */
  background: #ffffff; /* 文字色     */
}
.link_btn {
  overflow: hidden;
  list-style: none;
}
.link_btn li {
  float: left;
  width: 24%;
  text-align: center;
  background: #FF9900;
  margin-right: 1%;
  border-radius: 15px;
}
.link_btn li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
}
/* 経営理念 */
.flex-container {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}
@media screen and (min-width : 1000px) {
  .flex-container {
    flex-direction: row;
  }
}
.flex-item {
  margin: 0px auto;
  margin-bottom: 1%;
  width: 60%;
  padding: 1%;
  box-sizing: border-box;
  color: #222;
}
@media screen and (min-width : 1000px) {
  .flex-item {
    margin: 0px auto;
    margin-bottom: 0.5%;
    width: 21%;
    padding: 1%;
    box-sizing: border-box;
    color: #222;
  }
}
.flex-item img {
  width: 60%;
}
/* --------------------------------------------------
	page-top
-------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 100%;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}
/* --------------------------------------------------
	動き
-------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
/* --------------------------------------------------
	slider
-------------------------------------------------- */
.slider {
  margin: 0 0 50px;
}
.slider img {
  width: 100%;
  height: auto;
}
.single-item {
  max-width: 600px;
  margin: 0 auto 50px;
}
.slick-prev::before, .slick-next::before {
  font-size: 24px;
}
.lazy-item .slick-next, .thumb-item-nav .slick-next, .multiple-item .slick-next, .center-item .slick-next {
  right: 20px;
  z-index: 99;
}
.lazy-item .slick-prev, .thumb-item-nav .slick-prev, .multiple-item .slick-prev, .center-item .slick-prev {
  left: 15px;
  z-index: 100;
}
.single-item .slick-prev::before, .single-item .slick-next::before {
  color: #666;
}
.slick-dots {
  bottom: -25px;
}
/* --------------------------------------------------
	form
-------------------------------------------------- */
/* 全体のスタイル */
#formWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.formTable {
  width: 100%;
  border-collapse: collapse;
}

.formTable th {
  text-align: left;
  font-weight: bold;
  padding: 10px;
  background-color: #f1f1f1;
  color: #333;
  width: 20%;
  vertical-align: middle;
  height: 80px;
  box-sizing: border-box;
}

.formTable td {
  padding: 10px;
}

input[type="text"],
textarea,
input[type="submit"],
input[type="reset"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type="radio"] {
  margin-right: 5px;
}

/* ボタンのスタイル */
.btn {
  background-color: #ff9800; /* オレンジ色 */
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 20px;
  margin: 10px 5px 0;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background-color: #e68a00; /* オレンジ色の濃いトーン */
  color: #fff;
}

/* ボタンのコンテナ */
p.btn-container {
  display: flex;
  flex-direction: column; /* デフォルトは縦並び */
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* 画面幅1000px以上のスタイル */
@media screen and (min-width: 1000px) {
  p.btn-container {
    flex-direction: row; /* 横並び */
  }
}

/* モバイル対応 */
@media screen and (max-width: 1000px) {
  th, td {
    display: block !important;
    width: 100% !important; /* 幅100%を強制適用 */
  }

  th {
    height: 40px !important; /* 高さを強制適用 */
    line-height: 40px !important; /* テキストを中央揃え */
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  td {
    margin-bottom: 15px;
  }

  input[type="text"], textarea, .btn {
    font-size: 18px; /* フォントを少し大きく */
    padding: 12px 15px; /* パディングを拡張 */
  }

  textarea {
    height: auto; /* 自動サイズ調整 */
  }

  .btn {
    padding: 15px 25px; /* ボタンのクリック領域を拡張 */
    font-size: 18px; /* ボタンの文字も大きく */
  }

  /* ボタン間の間隔を広げる */
  .btn-container {
    gap: 15px; /* ボタン間の余白を広げる */
  }
}
