/* ==========================================================================
   Foundation
   ========================================================================== */
/*
  Reset
---------------------------------*/
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  text-indent: min( calc(0vw + 0rem), 0rem );
  letter-spacing: -1px;
  line-height: 2;
  font-size: 1rem;
  margin: 0;
  color: #162A40;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
p,
a{
  font-family:'IBM Plex Sans JP', sans-serif;
}
p{
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
  margin: 0;
  font-family:'IBM Plex Sans JP', sans-serif;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
li{
  line-height: 1.4;
  font-size: clamp(1rem, 2vw + 1rem, 1.4rem);
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
  line-height: 1.4;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.2rem);
}

dd {
  margin-left: 0;
  line-height: 1.4;
  font-size: clamp(1rem, 2vw + 1rem, 1.4rem);
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
  Base
---------------------------------*/
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/*

/*
  Layout - Nav
---------------------------------*/


.l-container,.l-container-fv {
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .l-container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1136px) {
  .l-container-fv {
    max-width: 1136px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
  .l-container{
    padding: 0 32px;
}
}
.l-container-sp {
  width: calc(670 / 768 *100%);
  margin: auto;
}

/*
  Layout - Section
---------------------------------*/
.l-section {
  padding: 36px 0;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
}

/*
  Layout - Main
---------------------------------*/
.l-main  {
  margin-top: 0px;
}
.l-underlayer{
  background: #f3f3f3;
}

@media screen and (min-width: 1024px) {
  .l-main {
    margin-top: 0px;
  }
}


/* ==========================================================================
   Object
   ========================================================================== */
/* -----------------------------------------------------------------
   Component
   ----------------------------------------------------------------- */
/*
  Data List
---------------------------------*/
.c-dataList {
  margin-right: 0;
  margin-left: auto;
}

.c-dataList__ttl {
  margin-bottom: 27px;
  padding-bottom: 17px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}

.c-dataList__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-dataList__dd,
.c-dataList__dt {
  font-size: 13px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-dataList__dt {
  font-weight: 500;
}

.c-dataList__dd {
  margin-top: 0;
  font-weight: 500;
}

.c-dataList__text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.84615;
}

/*
  Form
---------------------------------*/
.c-form {
  margin-top: 40px;
}
#contact h2{
  line-height: 1.2;
  font-size: clamp(2.8rem, 2vw + 1rem, 3.2rem);
  margin-bottom:32px;
}
.contact-box{
  background: #fff;
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 40px;
}

@media screen and (max-width: 779px) {
  .c-form {
    margin-top: 20px;
  }
  #contact{
    padding: 0px;
  }
}

#reserve .inner {
  border-radius: 20px;
  padding: 32px 18px;
  background: #fff;
  max-width: 860px;
  margin: auto;
}

#reserve .req {
  color: #fff;
  font-size: 1.4rem;
  background: #28467d;
  border-radius: 4px;
  padding: 4px 8px;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  vertical-align: 2px;
}

#reserve .any {
  color: #b81916;
  font-size: 1.4rem;
  background-color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 1rem;
  line-height: 1;
  border: 1px solid #b81916;
  font-weight: 400;
  display: inline-block;
}

#reserve table {
  margin-top: 32px;
  margin-bottom: 45px;
  font-size: 1.6rem;
  width: 100%;
  line-height: 1.4;
}

#reserve th {
  padding: 20px 30px;
  width: 32%;
  line-height: 1.75;
  text-align: left;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #ebebeb;
  border-left: none;
  border-top: none;
  background: #fff;
}

#reserve th .req,
#reserve th .any {
  margin-left: 8px;
}

#reserve th .req img,
#reserve th .any img {
  vertical-align: middle;
}

#reserve td {
  padding: 24px 32px;
  width: 68%;
  vertical-align: top;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #ebebeb;
  border-right: none;
  border-top: none;
  background: #fff;
  font-weight: 400;
}

#reserve td .dt1st,
#reserve td .dt2nd,
#reserve td .dt3rd {
  margin-bottom: 10px;
}

#reserve td .dt1st label,
#reserve td .dt2nd label,
#reserve td .dt3rd label {
  padding-right: 4px;
}

#reserve td .nte {
  margin-top: 10px;
  font-size: 13px;
}

#reserve td .cnt {
  margin-top: 20px;
  background: #fff;
  padding: 24px 28px;
  width: 72%;
  border: 1px solid #d2d2d2;
}

#reserve td input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d2d2d2;
  padding: 8px;
  background-color: #f3f3f3;
}

#reserve td input[name='reserve_date_1'],
#reserve td input[name='reserve_date_2'],
#reserve td input[name='reserve_date_3'] {
  width: 170px;
}

#reserve td input[type="radio"] {
  width: auto;
}

#reserve td select {
  height: 43px;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d2d2d2;
  background-color: #f3f3f3;
  padding: 8px;
}

#reserve td .rdoset {
  display: inline-bock;
  margin-right: 30px;
  margin-bottom: 10px;
}

#reserve td textarea {
  width:100%;
  height: 250px;
  min-height: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d2d2d2;
  background-color: #f3f3f3;
  padding: 8px;
}

#reserve td .validation-error {
  margin-top: 10px;
  color: #C00;
}

#reserve tr:last-child td,
#reserve tr:last-child th {
  border-bottom: 0;
}

#reserve button[type="submit"],
#reserve button[type="button"] {
  font-size: 24px;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  cursor: pointer;
  background: #28467d;
  font-size:1.8rem;
  border-radius: 10px;
}

#reserve button[type="submit"] {
  width: 340px;
  height: 72px;
  color: #FFF;
  background: inherit;
  background: #28467d;
  margin-top: 16px;
}

#reserve button.soushin[type="submit"] {
  color: #FFF;
  background: inherit;
  background-color: #1C3B4B;
  width: 340px;
  height: 72px;
  border-radius: 10px;
}

#reserve button[type="button"] {
  width: 340px;
  height: 72px;
  margin-top: 16px;
  color: #333;
  background: #CCC;
  border-radius: 10px;
}

#reserve .btnbox {
  text-align: center;
}
#reserve .btn-flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#reserve .base-text {
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 779px) {
  .c-box{
      padding: 0px;
  }
  
  #reserve table {
    font-size: 1.5rem;
    margin: 0;
  }
  #reserve .inner {
    width: calc(652 / 768 *100%);
    margin: auto;
    padding: 32px 16px;
  }
  #reserve td,
  #reserve th {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: none;
    border: none;
    padding: 6px 5px;
  }
  #reserve th {
    border-left: none;
    border-right: none;
  }
  #reserve td {
    border-bottom: 24px solid #fff;
    border-left: none;
    border-right: none;
  }
  #reserve td .rdoset {
    margin-right: 16px;
  }
  #reserve td input[type=email],
  #reserve td input[type=text],
  #reserve td textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 16px;
  }
  #reserve td input#reserve_date_1,
  #reserve td input#reserve_date_2,
  #reserve td input#reserve_date_3 {
    width: 60%;
    min-width: 55%;
  }
  #reserve td .dt1st label,
  #reserve td .dt2nd label,
  #reserve td .dt3rd label {
    padding-right: 8px;
    display: block;
    margin-bottom: 4px;
  }
  #reserve td select {
    height: 40px;
    font-size: 16px;
  }
  #reserve .base-text {
    font-size: 12px;
  }
  #reserve td .cnt {
    margin-top: 20px;
    padding: 12px 21px;
    width: 100%;
  }
  #reserve .req {
    color: #fff;
    font-size: 1.3rem;
    background-color: #28467d;
    border-radius: 4px;
    padding: 5px 6px;
    font-weight: bold;
    display: inline-block;
    vertical-align: 1px;
  }
  #reserve .any {
    color: #b81916;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 4px;
    padding: 3px 4px;
    margin-left: 16px;
  }
  #reserve .btnbox {
    max-width: 260px;
    margin: auto;
    margin-top: 8px;
    font-size: clamp(1rem, 3vw + 1rem, 1.8rem);
    border-radius: 10px;
  }
  #reserve button[type="submit"],
  #reserve button[type="button"] {
    font-size: clamp(1rem, 3vw + 1rem, 1.6rem);
    border-radius: 10px;
  }
  #reserve button[type="submit"] {
    width: 260px;
    height: 48px;
    background: #28467d;
    border-radius: 10px;
  }
  #reserve button.soushin[type="submit"] {
    width: 260px;
    height: 48px;
    background: #28467d;
    border-radius: 10px;
  }
  #reserve button[type="button"] {
    width: 260px;
    height: 48px;
    background: #cdcdcd;
    border-radius: 10px;
  }
}

.confirm #wrapper,
.thanks #wrapper {
  margin-top: 68px;
}

@media screen and (min-width: 1024px) {
  .confirm #wrapper,
  .thanks #wrapper {
    margin-top: 80px;
  }
}

.confirm #reserve .title, .thanks #reserve .title {
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 21px;
  font-weight: 700;
  line-height: calc(56 / 42);
}

@media screen and (min-width: 768px) {
  .confirm #reserve .title, .thanks #reserve .title {
    margin-top: 0;
    font-size: 34px;
  }
}

.confirm #reserve .text, .thanks #reserve .text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .confirm #reserve .text, .thanks #reserve .text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.confirm #reserve table, .thanks #reserve table {
  margin: 24px 0;
}

.confirm #reserve td, .confirm #reserve th, .thanks #reserve td, .thanks #reserve th {
  border: 2px solid #ebebeb;
}

.confirm #reserve tr:last-child td, .thanks #reserve tr:last-child td {
  border-bottom: 2px solid #ebebeb;
}

.confirm #reserve th, .thanks #reserve th {
  background: #F5F5F5;
  margin-top: 8px;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .confirm #reserve th, .thanks #reserve th {
    border-bottom: 2px solid #ebebeb;
  }
}

.thanks #reserve .to-top-btn {
  margin-right: auto;
  margin-left: auto;
  width: 260px;
}

.thanks #reserve .to-top-btn__link {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #fff;
  color: #4C768B;
  border: 3px solid #4C768B;
  border-radius: 16px;
}

@media screen and (min-width: 768px) {
  .thanks #reserve .to-top-btn__link {
    font-size: 2.2rem;
    border-radius: 18px;
  }
}

.c-form-thanks {
  margin-top: 68px;
  height: calc(100vh - 240px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-form-thanks__inner {
  border: 8px solid #F5F5F5;
  padding: 40px 8px;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__inner {
    border: 16px solid #F5F5F5;
    padding: 80px 20px;
  }
}

.c-form-thanks__inner > * + * {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__inner > * + * {
    margin-top: 48px;
  }
}

.c-form-thanks__heading__main {
  font-size: 1.8rem;
  color: #4C768B;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__heading__main {
    font-size: 3.2rem;
  }
}

.c-form-thanks__heading__sub {
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__heading__sub {
    font-size: 2.2rem;
  }
}

.c-form-thanks__text {
  font-size: 1.3rem;
  color: #263330;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__text {
    font-size: 1.8rem;
  }
}

.c-form-thanks__notice {
  font-weight: 400;
  font-size: 1.1rem;
  color: #263330;
  line-height: 1.6;
  text-align: center;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .c-form-thanks__notice {
    font-size: 1.3rem;
  }
}

.c-form-thanks-btn {
  margin-right: auto;
  margin-left: auto;
  width: 210px;
}

@media screen and (min-width: 768px) {
  .c-form-thanks-btn {
    width: 420px;
  }
}

.c-form-thanks-btn__link {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #fff;
  color: #4C768B;
  border: 3px solid #4C768B;
  border-radius: 32px;
}

@media screen and (min-width: 768px) {
  .c-form-thanks-btn__link {
    font-size: 2.2rem;
    border-radius: 18px;
    padding: 18px 20px;
    border-radius: 64px;
  }
}

/* -----------------------------------------------------------------
   Project
   ----------------------------------------------------------------- */
/*
  Footer
---------------------------------*/
.p-footer__content {
  position: relative;
  padding: 24px 0 28px;
}

@media screen and (min-width: 768px) {
  .p-footer__content {
    padding: 56px 0;
  }
}

.p-footer__logo {
  width: calc(523 / 768 *100%);
  max-width: 261px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: calc(437 / 1080 *100%);
    max-width: 437px;
  }
}

.p-footer__text {
  text-align: center;
  font-size: 1.3rem;
  line-height: calc(42 / 26);
}

@media screen and (min-width: 768px) {
  .p-footer__text {
    margin-top: 32px;
    font-size: 1.8rem;
  }
}

.p-footer__address {
  margin-top: 16px;
}

.p-footer__tell {
  margin-top: 8px;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .p-footer__tell {
    margin-top: 24px;
    font-size: 3.2rem;
  }
}

/*
  Section
---------------------------------*/
.p-section-bg {
  background-color: #DEE6EF;
}

.p-section-bg--blue {
  background-color: #4C768B;
}

/*
  Index
---------------------------------*/


/* -----------------------------------------------------------------
   floating
   ----------------------------------------------------------------- */

   .p-floating {
    z-index: 100;
    position: fixed;
    bottom: 0;
    width: 100%;
    transition: .4s;
    padding: 3.2rem 8%;
  }
  .js-floating-bnr{
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .show{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hidden{
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  
  @media screen and (min-width: 768px) {
    .p-floating {
      display: none;
    }
  }
  .p-floating__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    margin: auto;
  }
  .p-floating__tell {
    background: #28467d;
    display: inline-block;
    height: 5.6rem;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-floating__tell > a{
    color: #fff;
  }

/* 会社概要 */

.table_design03 {
  border-collapse: collapse;
  width: 90%;
  max-width: 700px;
  margin: 40px auto;
}
.table_design03 th {
  padding: 1em;
  background:#e9eff5;
  width:25%;
}
.table_design03 td {
  padding: 1em;
  text-align: left;
  width:75%;
}

/* プライバシーポリシー */

.privacy-wrap{
  width: 80%;
  margin: 32px auto;
  max-width: 800px;
}
.privacy-wrap p{
  font-size: 1.3rem;
  padding-bottom: 24px;
}
.privacy-box h3{
  margin-bottom: 16px;
}
.privacy-box li{
  margin-bottom: 12px;
}
.privacy-box li:last-child{
  margin-bottom: 24px;
}

/*
  Library
---------------------------------*/
.js-slick-flow {
  position: relative;
}

.js-slick-flow .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: initial;
  margin-top: 19px;
  width: calc(564 / 724 *100%);
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  .js-slick-flow .slick-dots {
    width: calc(384 / 1328 *100%);
    margin: auto;
    margin-top: 40px;
  }
}

.js-slick-flow .slick-dots li {
  margin: 0;
  width: 36px;
  height: 36px;
  background-color: #fff;
  color: #4C768B;
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.6rem;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
}

.js-slick-flow .slick-dots li:nth-child(n + 8) {
  display: none;
}

@media screen and (min-width: 768px) {
  .js-slick-flow .slick-dots li:nth-child(n + 8) {
    display: block;
  }
}

.js-slick-flow .slick-dots li.slick-active {
  background-color: #1C3B4B;
  color: #fff;
}

.js-slick-flow .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.js-slick-flow .slick-slide {
  height: auto;
}

.js-slick-flow.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.ui-datepicker {
  width: 14em;
  padding: 0.4em 0.4em 0;
}

.ui-widget {
  font-size: 2em;
}

/* -----------------------------------------------------------------
   Utility
   ----------------------------------------------------------------- */
.sp-only {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.u-visibility-hidden {
  visibility: hidden;
}
