@charset "UTF-8";

/* カラー */
/* テーマカラー */
/* テキストカラー */
/* ボーダーカラー */
/* フォント */
/* スペーサー */
/* コンテンツ・ページ幅 */
/* ブレークポイント */
/*========================================
  ## レスポンシブサイズ
  指定のブレイクポイントの間だけサイズがレスポンシブ変化します。
  フォントサイズ等で使用する。
  元ネタはここ。
  https://min-max-calculator.9elements.com/

  [ 引数一覧 ]
  $from: 開始フォントサイズ
  $to: 終了フォントサイズ
  $bMax: 開始ブレイクポイント | 省略可 | デフォルトはmd
  $bMin: 終了ブレイクポイント | 省略可 | デフォルトはsm

  [ 使い方 ]
  font-size: rf(18,16) //最大サイズ18px から 最低サイズ16pxまでなめらかに変化する。
========================================*/
/*html5doctor.com Reset Stylesheetv1.6.1Last Updated: 2010-09-17Author: Richard Clark - http://richclarkdesign.comTwitter: @rich_clark*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
}

button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=radio] {
  display: none;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1e1d1d;
  background-color: #fff;
  font-feature-settings: "palt";
  font-kerning: normal;
}

p {
  line-height: 1.6;
}

small {
  font-size: 87.5%;
}

/*==================================
  共通スタイル
==================================*/
.wrapper {
  flex-grow: 1;
}

/* ページ幅・コンテンツ幅 */
.u-page-width,
.u-content-width {
  margin-inline: auto;
  width: 100%;
}

.u-page-width:not(.padding-inner) {
  max-width: 1280px;
}

.u-page-width.padding-inner {
  max-width: calc(1280px + 5rem);
}

.u-content-width:not(.padding-inner) {
  max-width: 968px;
}

.u-content-width.padding-inner {
  max-width: calc(968px + 5rem);
}

.u-padding-inner {
  padding: 0rem 2rem;
}

@media (max-width: 768px) {
  .u-padding-inner {
    padding: 0rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .u-padding-inner {
    padding: 0rem 1rem;
  }
}

.u-visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.u-cover-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.u-cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

@media not all and (max-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

/* テキスト系 */
.u-bold {
  font-weight: bold !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-danger {
  color: #e32929;
}

.u-text-muted {
  color: #b3b3b3;
}

.u-link {
  color: #1a73e8 !important;
  transition: 0.25s opacity ease-in-out;
}

@media (hover: hover) {
  .u-link:hover {
    opacity: 0.7;
  }
}

/* セクション系 */
.u-section-margin {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .u-section-margin {
    margin-bottom: 50px;
  }
}

/* margin */
.u-my-0,
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-my-1,
.u-mt-1 {
  margin-top: 0.25rem !important;
}

.u-my-2,
.u-mt-2 {
  margin-top: 0.5rem !important;
}

.u-my-3,
.u-mt-3 {
  margin-top: 1rem !important;
}

.u-my-4,
.u-mt-4 {
  margin-top: 1.5rem !important;
}

.u-my-5,
.u-mt-5 {
  margin-top: 3rem !important;
}

.u-my-auto,
.u-mt-auto {
  margin-top: auto !important;
}

.u-my-0,
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-my-1,
.u-mb-1 {
  margin-bottom: 0.25rem !important;
}

.u-my-2,
.u-mb-2 {
  margin-bottom: 0.5rem !important;
}

.u-my-3,
.u-mb-3 {
  margin-bottom: 1rem !important;
}

.u-my-4,
.u-mb-4 {
  margin-bottom: 1.5rem !important;
}

.u-my-5,
.u-mb-5 {
  margin-bottom: 3rem !important;
}

.u-my-auto,
.u-mb-auto {
  margin-bottom: auto !important;
}

.u-mx-0,
.u-ml-0 {
  margin-left: 0rem !important;
}

.u-mx-1,
.u-ml-1 {
  margin-left: 0.25rem !important;
}

.u-mx-2,
.u-ml-2 {
  margin-left: 0.5rem !important;
}

.u-mx-3,
.u-ml-3 {
  margin-left: 1rem !important;
}

.u-mx-4,
.u-ml-4 {
  margin-left: 1.5rem !important;
}

.u-mx-5,
.u-ml-5 {
  margin-left: 3rem !important;
}

.u-mx-auto,
.u-ml-auto {
  margin-left: auto !important;
}

.u-mx-0,
.u-mr-0 {
  margin-right: 0rem !important;
}

.u-mx-1,
.u-mr-1 {
  margin-right: 0.25rem !important;
}

.u-mx-2,
.u-mr-2 {
  margin-right: 0.5rem !important;
}

.u-mx-3,
.u-mr-3 {
  margin-right: 1rem !important;
}

.u-mx-4,
.u-mr-4 {
  margin-right: 1.5rem !important;
}

.u-mx-5,
.u-mr-5 {
  margin-right: 3rem !important;
}

.u-mx-auto,
.u-mr-auto {
  margin-right: auto !important;
}

.m-0 {
  margin: 0rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

/* padding */
.u-py-0,
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-py-1,
.u-pt-1 {
  padding-top: 0.25rem !important;
}

.u-py-2,
.u-pt-2 {
  padding-top: 0.5rem !important;
}

.u-py-3,
.u-pt-3 {
  padding-top: 1rem !important;
}

.u-py-4,
.u-pt-4 {
  padding-top: 1.5rem !important;
}

.u-py-5,
.u-pt-5 {
  padding-top: 3rem !important;
}

.u-py-auto,
.u-pt-auto {
  padding-top: auto !important;
}

.u-py-0,
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-py-1,
.u-pb-1 {
  padding-bottom: 0.25rem !important;
}

.u-py-2,
.u-pb-2 {
  padding-bottom: 0.5rem !important;
}

.u-py-3,
.u-pb-3 {
  padding-bottom: 1rem !important;
}

.u-py-4,
.u-pb-4 {
  padding-bottom: 1.5rem !important;
}

.u-py-5,
.u-pb-5 {
  padding-bottom: 3rem !important;
}

.u-py-auto,
.u-pb-auto {
  padding-bottom: auto !important;
}

.u-px-0,
.u-pl-0 {
  padding-left: 0rem !important;
}

.u-px-1,
.u-pl-1 {
  padding-left: 0.25rem !important;
}

.u-px-2,
.u-pl-2 {
  padding-left: 0.5rem !important;
}

.u-px-3,
.u-pl-3 {
  padding-left: 1rem !important;
}

.u-px-4,
.u-pl-4 {
  padding-left: 1.5rem !important;
}

.u-px-5,
.u-pl-5 {
  padding-left: 3rem !important;
}

.u-px-auto,
.u-pl-auto {
  padding-left: auto !important;
}

.u-px-0,
.u-pr-0 {
  padding-right: 0rem !important;
}

.u-px-1,
.u-pr-1 {
  padding-right: 0.25rem !important;
}

.u-px-2,
.u-pr-2 {
  padding-right: 0.5rem !important;
}

.u-px-3,
.u-pr-3 {
  padding-right: 1rem !important;
}

.u-px-4,
.u-pr-4 {
  padding-right: 1.5rem !important;
}

.u-px-5,
.u-pr-5 {
  padding-right: 3rem !important;
}

.u-px-auto,
.u-pr-auto {
  padding-right: auto !important;
}

.u-p-0 {
  padding: 0rem !important;
}

.u-p-1 {
  padding: 0.25rem !important;
}

.u-p-2 {
  padding: 0.5rem !important;
}

.u-p-3 {
  padding: 1rem !important;
}

.u-p-4 {
  padding: 1.5rem !important;
}

.u-p-5 {
  padding: 3rem !important;
}

.u-p-auto {
  padding: auto !important;
}

.c-badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.c-badge-primary {
  color: #fff;
  background-color: #5388e3;
}

.c-badge-secondary {
  color: #fff;
  background-color: #454343;
}

.c-badge-danger {
  color: #fff;
  background-color: #e32929;
}

.c-badge-light {
  color: #fff;
  background-color: #b3b3b3;
}

/*==================================
  ボタン
==================================*/
.c-btn {
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 400;
  color: #1e1d1d;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.c-btn:disabled {
  cursor: not-allowed;
}

.c-btn-block {
  display: block;
  width: 100%;
}

.c-btn-primary {
  color: #fff;
  background-color: #5388e3;
  border-color: #5388e3;
}

@media (hover: hover) {
  .c-btn-primary:hover {
    color: #fff;
    background-color: #276adc;
    border-color: #276adc;
  }
}

.c-btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(83, 136, 227, 0.5);
}

.c-btn-primary:disabled {
  color: #fff;
  background-color: #7fa6ea;
  border-color: #7fa6ea;
}

.c-btn-outline-primary {
  color: #5388e3;
  background-color: transparent;
  background-color: none;
  border-color: #5388e3;
}

@media (hover: hover) {
  .c-btn-outline-primary:hover {
    color: #fff;
    background-color: #5388e3;
    border-color: #5388e3;
  }
}

.c-btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(83, 136, 227, 0.5);
}

.c-btn-outline-primary:disabled {
  color: #7fa6ea;
  background-color: transparent;
  background-color: none;
  border-color: #7fa6ea;
}

.c-btn-secondary {
  color: #fff;
  background-color: #454343;
  border-color: #454343;
}

@media (hover: hover) {
  .c-btn-secondary:hover {
    color: #fff;
    background-color: #2b2a2a;
    border-color: #2b2a2a;
  }
}

.c-btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 67, 67, 0.5);
}

.c-btn-secondary:disabled {
  color: #fff;
  background-color: #5f5c5c;
  border-color: #5f5c5c;
}

.c-btn-outline-secondary {
  color: #454343;
  background-color: transparent;
  background-color: none;
  border-color: #454343;
}

@media (hover: hover) {
  .c-btn-outline-secondary:hover {
    color: #fff;
    background-color: #454343;
    border-color: #454343;
  }
}

.c-btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 67, 67, 0.5);
}

.c-btn-outline-secondary:disabled {
  color: #5f5c5c;
  background-color: transparent;
  background-color: none;
  border-color: #5f5c5c;
}

.c-btn-danger {
  color: #fff;
  background-color: #e32929;
  border-color: #e32929;
}

@media (hover: hover) {
  .c-btn-danger:hover {
    color: #fff;
    background-color: #c01919;
    border-color: #c01919;
  }
}

.c-btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}

.c-btn-danger:disabled {
  color: #fff;
  background-color: #e95656;
  border-color: #e95656;
}

.c-btn-outline-danger {
  color: #e32929;
  background-color: transparent;
  background-color: none;
  border-color: #e32929;
}

@media (hover: hover) {
  .c-btn-outline-danger:hover {
    color: #fff;
    background-color: #e32929;
    border-color: #e32929;
  }
}

.c-btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}

.c-btn-outline-danger:disabled {
  color: #e95656;
  background-color: transparent;
  background-color: none;
  border-color: #e95656;
}

.c-btn-light {
  color: #fff;
  background-color: #b3b3b3;
  border-color: #b3b3b3;
}

@media (hover: hover) {
  .c-btn-light:hover {
    color: #fff;
    background-color: #999999;
    border-color: #999999;
  }
}

.c-btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(179, 179, 179, 0.5);
}

.c-btn-light:disabled {
  color: #fff;
  background-color: #cccccc;
  border-color: #cccccc;
}

.c-btn-outline-light {
  color: #b3b3b3;
  background-color: transparent;
  background-color: none;
  border-color: #b3b3b3;
}

@media (hover: hover) {
  .c-btn-outline-light:hover {
    color: #fff;
    background-color: #b3b3b3;
    border-color: #b3b3b3;
  }
}

.c-btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(179, 179, 179, 0.5);
}

.c-btn-outline-light:disabled {
  color: #cccccc;
  background-color: transparent;
  background-color: none;
  border-color: #cccccc;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-header {
  margin-bottom: 3rem;
}

.form-footer {
  margin-top: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #7fa6ea;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(83, 136, 227, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f9f9f9;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control::placeholder {
  color: #ccc;
  opacity: 1;
}

textarea.form-control {
  height: auto;
}

.custom-select {
  display: inline-block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #7fa6ea;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(83, 136, 227, 0.25);
}

body {
  background: url(../img/bg.png) no-repeat top center/cover;
}

.lp-hone {
  background: rgb(196, 228, 246);
  background: linear-gradient(180deg, rgba(196, 228, 246, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.lp-bussann {
  background: #FFF799;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.l-header__btn {
  background: #019e97;
  color: #fff;
  padding: 16px 32px 16px 62px;
  border-radius: 5px;
  border: 1px solid #019e97;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 25px center;
  background-image: url(../img/icon-mail.svg);
  text-decoration: none;
  display: block;
  font-size: clamp(16px, 2vw + 4px, 20px);
}

@media (max-width: 768px) {
  .l-header__btn {
    width: 50%;
    text-align: center;
    background-position: 10px center;
    background-size: 16px;
    padding: 15px;
    padding-left: 30px;
  }
}

.l-header__btn.--tel {
  color: #019e97;
  background-color: #fff;
  background-image: url(../img/icon-tel.svg);
}

.main-visual {
  position: relative;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  padding: 60px 0 30px;
  margin: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .main-visual {
    width: 100%;
    padding: 15px 0;
  }
}

.lp-bussann .main-visual {
  padding-top: 0;
}

.lp-anko {
  background: #F0BB41;
}

.lp-anko .main-visual {
  padding-top: 0;
}

.lp-kakuzuke {
  background: url(../img/kakuzuke-bg.webp) repeat-y center/100%;
}

.lp-kakuzuke .main-visual {
  padding-top: 0;
}

.main-visual img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-section__title {
  text-align: center;
  font-size: clamp(18px, 4vw - 6px, 26px);
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .c-section__title {
    margin-bottom: 20px;
  }
}

.c-event {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .c-event {
    margin-top: 30px;
  }
}

.c-event__content {
  width: calc(100% - 30px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  align-items: center;
  background: #fff;
  border: 10px solid #c4352c;
  padding: 16px;
  position: relative;
}

@media (max-width: 768px) {
  .c-event__content {
    display: flex;
    flex-flow: column;
    width: calc(100% - 15px);
  }
}

.c-event__content::after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  position: absolute;
  z-index: 1;
  left: -10px;
  top: -10px;
  border-right: 5px solid #000;
  border-bottom: 5px solid #000;
  z-index: -1;
}

.c-event__content--kaijou {
  display: block;
  grid-area: 1/1/2/2;
  margin-top: 15px;
}

.c-event__content--gmap {
  display: block;
  grid-area: 2/1/3/2;
  text-decoration: none;
  border: 1px solid #000;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  color: #1e1d1d;
  background-image: url(../img/icon-map.png);
  background-position: 30px center;
  background-size: 20px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 20px;
}

.c-event__content--map {
  display: block;
  grid-area: 1/2/3/3;
}

form {
  background-color: #fff;
  padding: 42px 20px;
  border-radius: 5px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 16px;
  margin-bottom: 10px;
  border-radius: 3px;
  border: 1px solid #ddd;
}

input[type=submit].c-btn__sbmit {
  padding: 10px 70px;
  background-color: #019e97;
  border-radius: 4px;
  color: white;
  border: none;
  cursor: pointer;
  max-width: 230px;
}

.lp-footer {
  text-align: center;
  background: #019e97;
  padding: 24px 12px;
  color: #fff;
}

.lp-footer--logo {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .lp-footer--logo {
    max-width: 240px;
  }
}

.floating-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media not all and (max-width: 768px) {
  .floating-btn {
    position: static;
    background: none;
  }
}

.p-contact-fv {
  text-align: center;
  padding: 80px 0 20px;
}

.p-contact-fv__title {
  font-size: clamp(20px, 6vw - 16px, 32px);
}

.contact__container {
  padding: 60px 0;
}

.contact__container--text {
  margin-bottom: 60px;
}



/*# sourceMappingURL=style.css.map */