@charset "UTF-8";
/* ==================================================
[Style] 
    1. setting
	2. foundation
	3. Layout  
	4. object 

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* typography */
/* media-query */
/* variables */
/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @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, main, 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, main, 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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #000;
  outline: none;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

select,
textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 0.75em;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 0 0;
  cursor: pointer;
}

/* mixins */
/* functions */
/* vendor */
/* slick */
.slick-slide {
  width: 100%;
  height: calc(100vh - 60px);
  z-index: 1;
  background: center center no-repeat;
  background-size: cover;
}

.slick-arrow {
  display: block;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slick-next {
  right: 20px;
}

.slick-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  position: absolute;
  left: 45%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.slick-prev {
  left: 20px;
}

.slick-prev::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  position: absolute;
  right: 45%;
  top: 50%;
  -webkit-transform: translateX(50%) translateY(-50%) rotate(135deg);
  transform: translateX(50%) translateY(-50%) rotate(135deg);
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dots li {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 15px;
  position: relative;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  background: transparent;
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 0;
  border: none;
  color: transparent;
  padding: 5px;
}

.slick-dots li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 2px solid #000;
}

.slick-dots li.slick-active::before {
  background: #000;
  border: 2px solid #000;
}

/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
.l-header {
  padding: 5em 0;
  width: 100%;
}

.l-header__content {
  text-align: center;
}

.l-header__content h1 {
  font-size: 2.625rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.l-header__content p {
  margin-top: 2em;
  font-size: 1.3125rem;
}

@media only screen and (max-width: 739px) {
  .l-header {
    padding: 3em 0;
  }
  .l-header__content h1 {
    font-size: 2rem;
  }
  .l-header__content p {
    font-size: 1rem;
  }
}

/* footer */
.l-footer {
  background-color: #000;
}

.l-footer__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-footer__contents {
  text-align: center;
  padding: 50px 0 10px;
  color: #fff;
}

.l-footer__contents .c-heading3 {
  color: #fff;
  font-weight: bold;
}

.l-footer__contents a {
  color: #fff;
}

.l-footer__copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
}

/* main */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1200px;
  max-width: 100%;
  height: inherit;
}

.l-inner.--wide {
  width: 1400px;
}

.l-inner.--narrow {
  width: 1000px;
}

@media only screen and (max-width: 739px) {
  .l-inner {
    padding: 0 16px;
  }
}

/* flex */
.l-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-flex.--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-flex__col.--col1 {
  width: calc( 100% / (12 / 1));
}

.l-flex__col.--col2 {
  width: calc( 100% / (12 / 2));
}

.l-flex__col.--col3 {
  width: calc( 100% / (12 / 3));
}

.l-flex__col.--col4 {
  width: calc( 100% / (12 / 4));
}

.l-flex__col.--col5 {
  width: calc( 100% / (12 / 5));
}

.l-flex__col.--col6 {
  width: calc( 100% / (12 / 6));
}

.l-flex__col.--col7 {
  width: calc( 100% / (12 / 7));
}

.l-flex__col.--col8 {
  width: calc( 100% / (12 / 8));
}

.l-flex__col.--col9 {
  width: calc( 100% / (12 / 9));
}

.l-flex__col.--col10 {
  width: calc( 100% / (12 / 10));
}

.l-flex__col.--col11 {
  width: calc( 100% / (12 / 11));
}

@media only screen and (max-width: 739px) {
  .l-flex.--spmax .l-flex__col {
    width: 100%;
  }
}

/* table */
.l-table {
  width: 100%;
  margin-bottom: 2em;
}

.l-table .--col1 {
  width: calc( 100% / (12 / 1));
}

.l-table .--col2 {
  width: calc( 100% / (12 / 2));
}

.l-table .--col3 {
  width: calc( 100% / (12 / 3));
}

.l-table .--col4 {
  width: calc( 100% / (12 / 4));
}

.l-table .--col5 {
  width: calc( 100% / (12 / 5));
}

.l-table .--col6 {
  width: calc( 100% / (12 / 6));
}

.l-table .--col7 {
  width: calc( 100% / (12 / 7));
}

.l-table .--col8 {
  width: calc( 100% / (12 / 8));
}

.l-table .--col9 {
  width: calc( 100% / (12 / 9));
}

.l-table .--col10 {
  width: calc( 100% / (12 / 10));
}

.l-table .--col11 {
  width: calc( 100% / (12 / 11));
}

.l-table__table {
  font-size: 1rem;
  color: #000;
  width: 100%;
}

.l-table__th, .l-table__td {
  border: 1px solid rgba(0, 0, 0, 0.25);
  vertical-align: middle;
}

.l-table__th {
  padding: 0.75em;
  vertical-align: middle;
  background-color: #ededed;
}

.l-table__th.--center {
  text-align: center;
}

.l-table__th.--top {
  vertical-align: top;
}

.l-table__td {
  padding: 0.75em;
  vertical-align: top;
  font-weight: 500;
}

.l-table__td.--center {
  text-align: center;
}

.l-table__td.--center {
  text-align: center;
}

.l-table__td.--demibold {
  font-weight: 600 !important;
}

.l-table__td.--regular {
  font-weight: 400;
}

.l-table__td.--lh2 {
  line-height: 2;
}

.l-table__td__listCol2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-table__td__listCol2 .c-listDot {
  width: 42.4%;
}

.l-table.--color1 .l-table__th {
  background-color: #f9e4ec;
}

.l-table.--color2 .l-table__th {
  background-color: #333;
  color: #ffffff;
}

.l-table.--color2 .l-table__td {
  background: #edf6f9;
}

.l-table.--color2 .l-table__th, .l-table.--color2 .l-table__td {
  border: none;
  border-top: 1px solid rgba(96, 96, 96, 0.25);
  border-bottom: 1px solid rgba(96, 96, 96, 0.25);
}

@media only screen and (max-width: 739px) {
  .l-table.--spmax {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
  .l-table.--spmax .l-table__col, .l-table.--spmax .l-table__th, .l-table.--spmax .l-table__td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .l-table.--scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 60px;
    font-size: 0.9375rem;
  }
  .l-table.--scroll::-webkit-scrollbar {
    height: 8px;
  }
  .l-table.--scroll::-webkit-scrollbar-thumb {
    background-color: #ededed;
    border-radius: 5px;
  }
}

/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
/* btn */
.c-button.--center {
  text-align: center;
}

.c-button__link {
  display: inline-block;
  position: relative;
  min-width: 300px;
  margin: 10px;
  background-color: #0092e5;
  padding: 10px;
  border: 1px solid #0092e5;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  text-align: center;
}

.c-button__link:after {
  content: "";
  width: 13px;
  height: 12px;
  display: inline-block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/common/arrowRW.png) no-repeat center/contain;
}

.c-button__link.--back:after {
  right: inherit;
  left: 1.5em;
  background: url(../images/common/arrowLW.png) no-repeat center/contain;
}

@media all and (min-width: 740px), print {
  .c-button__link {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .c-button__link:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

@media only screen and (max-width: 739px) {
  .c-button {
    text-align: center;
  }
}

/* form */
.c-form .error {
  font-size: 0.875rem;
  color: #c71e1e;
}

.c-form__label {
  display: block;
  text-align: left;
}

.c-form__label.--note {
  font-size: 14px;
  color: #1b1b1b;
}

.c-form__label span {
  font-size: 0.75rem;
  color: #c71e1e;
}

.c-form__unit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.c-form__unit > div {
  width: 100%;
}

.c-form__unit.--half > div {
  width: 50%;
}

.c-form__unit.--multi > div {
  width: auto;
}

/* link */
.c-textlink {
  font-size: 1rem;
  display: inline-block;
  position: relative;
  color: #0092e5;
  text-decoration: underline;
}

.c-textlink[target="_blank"]:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../images/common/icon_blank.png) no-repeat center/contain;
  margin-left: 10px;
}

.c-textlink.--pdf:after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 13px;
  background: url(../images/common/icon_pdf.png) no-repeat center/contain;
  margin-left: 10px;
}

@media all and (min-width: 740px), print {
  a[href^="tel"] {
    pointer-events: none;
  }
}

/* list */
.c-listDot {
  margin-left: 12px;
  font-size: 1rem;
}

.c-listDot > li {
  position: relative;
}

.c-listDot > li::before {
  position: absolute;
  left: -12px;
  top: 10px;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #333;
}

.c-listDot > li + li {
  margin-top: 5px;
}

.c-listOrder {
  list-style: decimal;
  margin-left: 1.1em;
}

.c-listOl {
  font-size: 1rem;
  margin-left: 18px;
  color: #333;
  list-style: decimal;
}

.c-listOl > li + li {
  margin-top: 5px;
}

.c-listOl.--ml1 {
  margin-left: 30px;
}

.c-listDl {
  font-size: 1rem;
}

.c-listDl dt {
  margin-left: 18px;
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  line-height: 1.68;
}

.c-listDl dt::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
}

.c-listDl dt:not(:first-child) {
  margin-top: 8px;
}

.c-listDl dd {
  color: #333;
  margin-left: 18px;
}

.c-listDl dd.--ml0 {
  margin-left: 0 !important;
}

@media only screen and (max-width: 739px) {
  .c-listDot {
    margin-left: 20px;
  }
  .c-listDot.--ml2 {
    margin-left: 20px;
  }
  .c-listDot.--ml1 {
    margin-left: 20px;
  }
  .c-listDot > li:before {
    left: -18px;
  }
  .c-listDl dt {
    font-size: 1rem;
  }
}

/* mainvisual */
.c-mainvisual__item .slick-slide {
  width: 100%;
  height: calc(100vh - 100px);
}

/* pagetitle */
.c-pagetitle {
  position: relative;
}

.c-pagetitle__image {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #b8b8b8 no-repeat center center;
  background-size: cover;
}

.c-pagetitle__heading {
  height: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.625rem;
}

/* text */
.c-text1 {
  font-size: 1rem;
  font-weight: 500;
}

.c-text1.--center {
  text-align: center;
}

.c-text1.--bold {
  font-weight: 700;
}

.c-text1.--fs1 {
  font-size: 1.125rem;
}

.c-text1.--fs2 {
  font-size: 0.875rem;
}

.c-text1.--mb {
  margin-bottom: 3em;
}

.c-boxText1 {
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 1.5em;
  background-color: #ededed;
}

.c-boxText1__ttl {
  font-size: 1.3125rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.c-boxText1__txt.--bold {
  font-weight: bold;
}

.c-boxText1__txt.--fs1 {
  font-size: 1.125rem;
}

.c-boxText1__txt.--center {
  text-align: center;
}

.c-boxText2 {
  padding: 2em 1em;
  border-top: 1px solid #aaa;
}

.c-boxText2.--last {
  border-bottom: 1px solid #aaa;
}

@media only screen and (max-width: 739px) {
  .c-text1 {
    font-size: 0.9375rem;
  }
  .c-text1.--fs1 {
    font-size: 1rem;
  }
  .c-text1.--fs2 {
    font-size: 0.8125rem;
  }
  .c-boxText1 {
    padding: 20px 25px;
  }
  .c-boxText1__ttl {
    font-size: 1rem;
  }
  .c-boxText1__txt {
    font-size: 0.9375rem;
  }
  .c-boxText1__txt.--fs1 {
    font-size: 1rem;
  }
  .c-boxText2 {
    padding: 1em 0.5em;
  }
}

/* title */
.c-heading1 {
  font-size: 1.875rem;
  text-align: center;
}

.c-heading1::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-heading2 {
  font-size: 1.3125rem;
  color: #333;
  font-weight: bold;
  position: relative;
  margin-bottom: .5em;
}

.c-heading3 {
  font-size: 1.125rem;
  color: #333;
  font-weight: 400;
  padding: 0 0 6px;
  position: relative;
  margin-bottom: .5em;
}

@media only screen and (max-width: 739px) {
  .c-heading2 {
    font-size: 1.125rem;
  }
  .c-heading3 {
    font-size: 1rem;
  }
}

/* project */
.p-index__about .c-boxText1 {
  margin-bottom: 4em;
}

.p-index__about .c-boxText1__ttl {
  margin: 0 auto .75em;
  text-align: center;
}

.p-index__about .c-textlink {
  margin-top: 1em;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-index__form {
  /* margin-top: 3em; */
}

.p-index__form .c-text1 {
  margin-bottom: 2em;
}

.p-index__form .c-button {
  margin: 40px auto 80px;
}

.p-index__form__container {
  margin-top: 1em;
}

@media only screen and (max-width: 739px) {
  .p-index__about .c-textlink {
    font-size: 1rem;
  }
}

/* utility */
/* display */
.u-inlineBlock {
  display: inline-block;
}

@media all and (min-width: 740px), print {
  .u-onlySp {
    display: none !important;
  }
}

@media only screen and (max-width: 739px) {
  .u-onlyPc {
    display: none !important;
  }
}

/* hover */
.u-hoverOpacity {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 1;
}

.u-hoverOpacity:hover {
  opacity: 0.7;
}
