@charset "UTF-8";
/*リセットcss---------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #F9FBF0;
}

@media screen\0  {
  body {
    display: block;
  }
}
a {
  color: #333;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0068b7;
  text-decoration: none;
}

p, ol, ul, li, table, th, td, dl, dt, dd, a, address, figcaption {
  font-feature-settings: "palt";
  margin-bottom: 0;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5em;
  font-size: 1.6rem;
  transform: rotate(0.03deg);
  -moz-transform: rotate(0.03deg);
  -ms-transform: rotate(0.03deg);
  -o-transform: rotate(0.03deg);
  -webkit-transform: rotate(0.03deg);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

table {
  width: 100%;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
button:focus {
  outline: 0;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
@media only screen and (min-width: 992px) {
  p, ol, ul, li, table, th, td, dl, dt, dd, a, address, figcaption {
    font-size: 2rem;
  }
}
/*フォント関連----------------------*/
body {
  font-family: "M PLUS Rounded 1c", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

html {
  font-size: 62.5%;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

/*汎用クラス*/
.font_ss {
  font-size: 1rem !important;
}

.font_s {
  font-size: 1.2rem !important;
}

.font_ml {
  font-size: 2.6rem !important;
}

.font_l {
  font-size: 3rem !important;
}

@media only screen and (min-width: 768px) {
  /*汎用クラス*/
  .font_ss {
    font-size: 1.2rem !important;
  }
  .font_smm {
    font-size: 1.8rem !important;
  }
  .font_l {
    font-size: 4rem !important;
  }
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3.8rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2.8rem;
  }
  h5 {
    font-size: 2.6rem;
  }
  /*汎用クラス*/
  .font_s {
    font-size: 1.4rem !important;
  }
  .font_smm {
    font-size: 2rem !important;
  }
  .font_sm {
    font-size: 2.2rem !important;
  }
  .font_ml {
    font-size: 3.2rem !important;
  }
  .font_l {
    font-size: 6rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  .font_l {
    font-size: 6.2rem !important;
  }
}
/* 共通部品置き場 ---------------------------*/
.content {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.content_pt {
  padding-top: 40px !important;
}

.content_pb {
  padding-bottom: 40px !important;
}

.bg_white_box {
  border-radius: 25px;
  padding: 20px;
  background: #fff;
}

.text_line {
  background: linear-gradient(transparent 60%, #FFF200 60%);
}

.border_radius_20 {
  border-radius: 20px !important;
}

.ul_list li a::before {
  content: "▶";
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: all 0.3s;
}
.ul_list li a:hover::before {
  margin-right: 30px;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
  .three_column_layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .three_column_layout .three_column_layout_inner {
    max-width: 32%;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .content {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .content_pt {
    padding-top: 60px !important;
  }
  .content_pb {
    padding-bottom: 60px !important;
  }
}
/* ボタン置き場 -----------------------------*/
/*基本ボタン*/
.btn_layout a {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.btn_layout a:hover {
  transition: 0.5s;
}
.btn_layout a {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}
.btn_layout_mail a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F05A24;
}
.btn_layout_mail a::before {
  content: "";
  background: url(images/icon-mail.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  display: inline-block;
}

/*フォームボタン*/
.btn_layout {
  margin-top: 20px;
}
.btn_layout a {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.btn_layout a:hover {
  transition: 0.5s;
}
.btn_layout button, .btn_layout input {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  padding: 5px 15px;
  background: #0068b7;
}
.btn_layout .return {
  font-size: 2.2rem;
  background: rgba(51, 51, 51, 0.6);
}

/*mail（お問い合わせ）*/
.mail a {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2em;
  position: relative;
}
.mail a::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  background-color: #0068b7;
  top: -18px;
  left: -30px;
}
.mail a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(images/icon-mail.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -22px;
}

@-moz-document url-prefix() {
  .mail a::before {
    top: 0;
  }
  .mail a::after {
    top: 7px;
  }
}
_::-webkit-full-page-media, _:future, :root .mail a::after {
  top: -10px;
}

/*電話*/
.tel {
  line-height: 1.2em;
  margin-left: auto;
}
.tel a {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2em;
  position: relative;
}
.tel a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  background-color: #0068b7;
}
.tel a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(images/icon-tel.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -20px;
  top: 7px;
}
.tel a span {
  line-height: 1.2em;
}

/*電話 ヘッダー以外*/
.tel_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_content a {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 60px;
  line-height: 2em;
}
.tel_content a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 13px;
  background-color: #0068b7;
}
.tel_content a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(images/icon-tel.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 20px;
  top: 7px;
}
.tel_content_footer a {
  line-height: 0.5em;
  font-size: 3rem;
  padding-left: 30px;
}
.tel_content_footer a::before {
  width: 30px;
  height: 30px;
  left: -15px;
  top: -7px;
}
.tel_content_footer a::after {
  width: 15px;
  height: 15px;
  left: -5px;
  top: 0;
}

@media only screen and (min-width: 768px) {
  /*電話*/
  .tel {
    display: flex;
    align-items: center;
  }
  .tel a::after {
    top: 5px;
  }
  /*電話 ヘッダー以外*/
  .tel_content {
    justify-content: start;
  }
  .tel_content_footer {
    justify-content: center;
  }
  /*mail（お問い合わせ）*/
  .mail a::before {
    width: 20px;
    height: 20px;
    top: 0;
    left: -25px;
  }
  .mail a::after {
    width: 10px;
    height: 10px;
    top: 5px;
    left: -20px;
  }
  @-moz-document url-prefix() {
    .mail a::before {
      top: 15px;
    }
    .mail a::after {
      top: 20px;
    }
  }
  _::-webkit-full-page-media, _:future, :root .mail a::after {
    top: -15px;
  }
}
@media only screen and (min-width: 992px) {
  /*基本ボタン*/
  .btn_layout a {
    padding: 15px 60px;
  }
  .btn_layout_mail a {
    font-size: 2rem;
  }
  .btn_layout_mail a:hover {
    background: #b6765f;
    color: #fff;
  }
  /*フォームボタン*/
  .btn_layout {
    margin-top: 20px;
  }
  .btn_layout a {
    display: block;
    width: 100%;
    transition: 0.5s;
  }
  .btn_layout a:hover {
    transition: 0.5s;
  }
  .btn_layout button, .btn_layout input {
    padding: 5px 100px;
  }
  .btn_layout button:hover, .btn_layout input:hover {
    background: #2e6289;
    color: #fff;
  }
  .btn_layout .return {
    font-size: 1.6rem;
    padding: 10px 40px;
  }
  /*電話*/
  .tel a {
    font-size: 2rem;
  }
  .tel a::before {
    width: 35px;
    height: 35px;
    left: -40px;
    top: -5px;
  }
  .tel a::after {
    width: 20px;
    height: 20px;
    top: 2px;
    left: -32px;
  }
  /*電話 ヘッダー以外*/
  .tel_content a {
    font-size: 2.4rem;
  }
  .tel_content_footer a {
    font-size: 4rem;
  }
  .tel_content_footer a::before {
    width: 40px;
    height: 40px;
  }
  .tel_content_footer a::after {
    width: 25px;
    height: 25px;
  }
  /*mail（お問い合わせ）*/
  .mail a {
    font-size: 2rem;
  }
  .mail a::before {
    width: 35px;
    height: 35px;
    left: -40px;
    top: -5px;
  }
  .mail a::after {
    width: 20px;
    height: 20px;
    top: 2px;
    left: -32px;
  }
  @-moz-document url-prefix() {
    .mail a::before {
      top: 15px;
    }
    .mail a::after {
      top: 20px;
    }
  }
  _::-webkit-full-page-media, _:future, :root .mail a::after {
    top: -21px;
  }
}
@media only screen and (min-width: 1200px) {
  /*基本ボタン*/
  .btn_layout_mail a {
    font-size: 3rem;
  }
  /*電話*/
  .tel {
    margin-left: 80px;
  }
  /*電話 ヘッダー以外*/
  .tel_content a {
    font-size: 4rem;
    line-height: 1.4em;
  }
  .tel_content a::before {
    top: 10px;
  }
  .tel_content a::after {
    top: 17px;
  }
  .tel_content_footer a::before {
    top: 5px;
    left: -20px;
  }
  .tel_content_footer a::after {
    left: -10px;
    top: 10px;
  }
}
/* 色の汎用クラス置き場 ---------------------------*/
/*テキスト色*/
.text_sub_color_middle {
  color: #FFF200 !important;
}

.text_accent_color {
  color: #F05A24 !important;
}

/*背景色*/
.bg_main_color_base {
  background: #0068b7 !important;
}

.bg_sub_color {
  background: #F9FBF0 !important;
}

/* 共通見出し置き場 ---------------------------*/
/*タイトルレイアウト*/
.title_layout {
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  /*タイトルレイアウト*/
  .title_layout_big {
    display: inline-block;
    border-radius: 20px;
  }
}
@media only screen and (min-width: 992px) {
  /*タイトルレイアウト*/
  .title_layout {
    font-size: 3.8rem;
  }
}
/* ヘッダー関連 ------------------------*/
.page_header {
  position: fixed;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  z-index: 9999;
}

/*ロゴ*/
h1.logo {
  margin-bottom: 0;
  line-height: 0;
}

.logo img {
  width: 70px;
}

@media only screen and (min-width: 992px) {
  /*ロゴ*/
  .logo img {
    width: 125px;
  }
}
/*  フッター関連 ----------------------------*/
/*トップに戻る*/
.page_top {
  position: fixed;
  bottom: 90px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #333;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 80;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 20px;
}
.page_top::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  width: 20px;
  height: 20px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.page_top:hover {
  opacity: 0.8;
}

.page_footer {
  margin-top: auto;
  position: relative;
  background: #0068b7;
  /*タイトルレイアウト*/
  /*電話*/
}
.page_footer::before {
  content: "";
  position: absolute;
  border: 25px solid transparent;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}
.page_footer .title_layout {
  font-size: 3rem !important;
}
.page_footer .tel {
  display: flex;
}
.page_footer .tel a {
  color: #fff;
  font-size: 3.5rem;
}
.page_footer .tel a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(images/icon-footer-tel.svg) no-repeat;
  background-size: contain;
}

/*住所*/
address {
  font-size: 1.4rem;
}

/*コピーライト*/
.copyright {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}

/*kyoeiロゴ*/
.footer_logo {
  width: 150px;
}

/*kyoeiテキストロゴ*/
.footer_text_logo {
  width: 300px;
}

@media only screen and (min-width: 992px) {
  .page_footer {
    /*電話*/
  }
  .page_footer .tel a {
    font-size: 4.6rem;
  }
  .page_footer .tel a::before {
    width: 40px;
    height: 40px;
  }
  /*住所、コピーライト*/
  address, .copyright {
    font-size: 1.6rem;
  }
  /*トップに戻る*/
  .page_top {
    width: 80px;
    height: 80px;
  }
  .page_top::before {
    width: 25px;
    height: 25px;
  }
  /*kyoeiロゴ*/
  .footer_logo {
    width: 250px;
  }
  /*kyoeiテキストロゴ*/
  .footer_text_logo {
    width: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .page_footer .btn_layout button {
    min-width: auto;
  }
  /*kyoeiロゴ*/
  .footer_logo {
    width: 200px;
  }
}
/* メイン設定 ---------------------------*/
/*メインビジュアル*/
.mainimg_btn {
  position: absolute;
  width: 85%;
  top: 63%;
  right: 0;
  margin: 0 auto;
  left: 0;
  bottom: 0;
}

/*「SNS企画資料ダウンロード」とは?*/
.sns_text {
  text-align: center;
  font-weight: bold;
  line-height: 1.8em;
}

/*mainimg header調整*/
.header_height_padding {
  padding-top: 58px;
}

/*お問い合わせ---------------------*/
/*フォーム*/
.form-control {
  font-size: 1.6rem;
  height: auto;
}

.formErrorContent {
  padding: 10px;
  color: #fff;
  background: red;
  font-size: 1.6rem;
}

@media only screen and (min-width: 768px) {
  /*メインビジュアル*/
  .mainimg_btn {
    width: 200px;
    top: 45%;
    right: 25px;
    margin: 0;
    left: auto;
  }
  .mainimg_btn a {
    transition: all 0.3s;
  }
  .mainimg_btn a:hover {
    opacity: 0.8;
    transition: all 0.3s;
  }
  /*mainimg header調整*/
  .header_height_padding {
    padding-top: 44px;
  }
  .sns_text {
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2em;
  }
}
@media only screen and (min-width: 992px) {
  /*メインビジュアル*/
  .mainimg_btn {
    width: 250px;
  }
  .sns_text {
    font-size: 3.2rem;
  }
  /*mainimg header調整*/
  .header_height_padding {
    padding-top: 53px;
  }
}
@media only screen and (min-width: 1200px) {
  /*メインビジュアル*/
  .mainimg_btn {
    width: 25%;
    right: 60px;
  }
}