@charset "UTF-8";
/*
リセットCSS
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, 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;
}

/* 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;
}

/*===========================================================
変数の定義
===========================================================*/
/*===========================================================
レスポンシブ
ブレークポイントの定義
===========================================================*/
/*===========================================================
mixinの定義
===========================================================*/
/*===========================================================
基本の指定：　body,a,container,color, font　など
===========================================================*/
/*remの設定*/
html {
  font-size: 62.5%; /* 16px * 0.625 = 10px | 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

.wrap {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 1080px;
  }
}

img {
  width: auto;
  max-width: 100%;
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.25s;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}

input[type=submit] {
  transition: 0.25s;
}
input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.8;
}

ul {
  padding-left: 0;
}

iframe {
  max-width: 100vw;
  width: 100%;
}

p {
  font-size: 1.6rem;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=url],
input[type=password],
input[type=search],
textarea {
  border-radius: 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=number],
  input[type=url],
  input[type=password],
  input[type=search],
  textarea {
    width: 96%;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  color: #333;
  border: none;
  padding: 0.5em 3em 0.5em 1em;
  font-size: 1.6rem;
}
select:hover {
  cursor: pointer;
}

/*セレクトボックスの▼を表示*/
.select-box {
  display: inline-block;
  background: #fff;
  border: 1px solid #333;
  position: relative;
  /* ▼部分 */
}
.select-box::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 35%;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

/* コンタクトフォーム7で出現する要素の調整 */
.wpcf7-list-item {
  margin: 0.25em 0;
}
@media screen and (max-width: 480px) {
  .wpcf7-list-item {
    display: block;
    margin: 0;
  }
}

/*=======================================
ヘッダーのスタイル
========================================*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 80px;
  color: #333;
  border-bottom: 1px solid #ccc;
  background-color: #efefef;
}
@media screen and (max-width: 480px) {
  .l-header {
    height: 88px;
    padding: 16px 0;
  }
}
.l-header__body {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .l-header__body {
    display: block;
  }
}
.l-header__body__header__left {
  margin-right: auto;
  flex: 1;
}
@media screen and (max-width: 480px) {
  .l-header__body__header__left {
    text-align: center;
  }
}
.l-header__body__header__right {
  margin-left: auto;
  flex: 2;
}
.l-header__body__header__right__list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .l-header__body__header__right__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}
.l-header__body__header__right__list__item {
  line-height: 80px;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .l-header__body__header__right__list__item {
    margin-left: 1em;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-header__body__header__right__list__item {
    line-height: 40px;
    margin: 0;
  }
}

/*=======================================
メインのスタイル
========================================*/
main {
  padding-top: 80px;
}
@media screen and (max-width: 480px) {
  main {
    padding-top: 120px;
  }
}

section {
  padding: 50px 0;
}

/*=======================================
フッターのスタイル
========================================*/
.l-footer {
  padding: 25px 0;
  background: blue;
  color: #fff;
}
.l-footer__copyright {
  text-align: center;
  font-size: 1.5rem;
}

/*===========================================================
ボタンスタイル
===========================================================*/
.c-btn, .c-btn__btn--border-s, .c-btn__btn--border-c, .c-btn__btn--c, .c-btn__btn--s {
  background: #373737;
  border: 1.5px solid #373737;
  color: #fff;
  padding: 1.5rem 6em;
  display: inline-block;
  margin: 5px;
  transition: all 0.25s;
  position: relative;
}
.c-btn::after, .c-btn__btn--border-s::after, .c-btn__btn--border-c::after, .c-btn__btn--c::after, .c-btn__btn--s::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  right: 2em;
  transition: all 0.25s;
}
.c-btn:hover:after, .c-btn__btn--border-s:hover:after, .c-btn__btn--border-c:hover:after, .c-btn__btn--c:hover:after, .c-btn__btn--s:hover:after {
  transform: translatex(0.5em);
}
.c-btn__btn--c {
  border-radius: 100vh;
}
.c-btn__btn--border-s, .c-btn__btn--border-c {
  background: #fff;
  color: #373737;
}
.c-btn__btn--border-s:hover, .c-btn__btn--border-c:hover {
  background: #373737;
  color: #fff;
  opacity: 1;
}
.c-btn__btn--border-c {
  border-radius: 100vh;
}

/*===========================================================
カードのスタイル
===========================================================*/
.c-card__blog-card {
  margin: 5%;
}
.c-card__blog-card__eyecatch {
  margin-bottom: 10px;
}
.c-card__blog-card__texts__date {
  font-size: 1.4rem;
}
.c-card__blog-card__texts__title {
  font-size: 2rem;
  margin: 0;
  text-align: left;
}
.c-card__blog-card__texts__link {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 10px;
}

/*===========================================================
フォームのスタイル
===========================================================*/
/* コンタクトフォーム7で出現する要素の調整 */
.wpcf7-list-item {
  margin: 0 !important;
}
@media screen and (max-width: 480px) {
  .wpcf7-list-item {
    display: block !important;
  }
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  display: none;
}

.required, .any {
  color: #fff;
  background: #f00;
  padding: 0.2em 1em 0.3em;
  border-radius: 3px;
  font-size: 1.3rem;
  margin-right: 0.75em;
}

.any {
  background: #ccc;
}

input[type=radio], input[type=checkbox] {
  margin-right: 5px;
  position: relative;
  bottom: 2px;
  scale: 1.1;
}

.c-form__table {
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .c-form__table {
    width: 100%;
  }
}
.c-form__table th, .c-form__table td {
  padding: 0.5em 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-form__table th, .c-form__table td {
    display: block;
    width: 100%;
  }
}
.c-form__table th {
  text-align: left;
  white-space: nowrap;
  width: 15em;
}
@media screen and (max-width: 768px) {
  .c-form__table th {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-form__table td {
    margin-bottom: 1em;
  }
}
.c-form__table__input, .c-form__box__1c__table__textarea, .c-form__box__table__textarea, .c-form__table__textarea {
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-form__table__input, .c-form__box__1c__table__textarea, .c-form__box__table__textarea, .c-form__table__textarea {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .c-form__table__input, .c-form__box__1c__table__textarea, .c-form__box__table__textarea, .c-form__table__textarea {
    font-size: 1.6rem;
  }
}
.c-form__table__textarea {
  height: 10em;
}
.c-form__table label {
  margin-right: 1em;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .c-form__table label {
    display: block;
    width: 85%;
    margin: 10px 0;
  }
}
.c-form__submit {
  text-align: center;
  padding: 1em 0;
}
.c-form__submit input[type=submit] {
  padding: 0.5em 3em;
  font-weight: bold;
  border-radius: 3em;
  background: blue;
  border: 1px solid blue;
  color: #fff;
  font-size: 1.6rem;
}

/* 枠付き */
.c-form__box {
  padding: 50px 0;
  background: #efefef;
}
.c-form__box h2 {
  margin-top: 0;
}
.c-form__box__table {
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .c-form__box__table {
    width: 90%;
  }
}
.c-form__box__table th, .c-form__box__table td {
  padding: 0.5em 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-form__box__table th, .c-form__box__table td {
    display: block;
    width: 100%;
  }
}
.c-form__box__table th {
  text-align: left;
  white-space: nowrap;
  width: 15em;
}
@media screen and (max-width: 768px) {
  .c-form__box__table th {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-form__box__table td {
    margin-bottom: 1em;
  }
}
.c-form__box__table__input {
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-form__box__table__input {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .c-form__box__table__input {
    font-size: 1.6rem;
  }
}
.c-form__box__table__textarea {
  height: 10em;
}
.c-form__box__table label {
  margin-right: 1em;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .c-form__box__table label {
    display: block;
    width: 85%;
    margin: 10px 0;
  }
}
.c-form__box__submit {
  text-align: center;
  padding: 1em 0;
}
.c-form__box__submit input[type=submit] {
  padding: 0.5em 3em;
  font-weight: bold;
  border-radius: 3em;
  background: blue;
  border: 1px solid blue;
  color: #fff;
  font-size: 1.6rem;
}

/* 1カラム */
.c-form__box__1c {
  padding: 50px 0;
  background: #efefef;
}
.c-form__box__1c h2 {
  margin-top: 0;
}
.c-form__box__1c__table {
  margin: auto;
  width: 65%;
}
@media screen and (max-width: 480px) {
  .c-form__box__1c__table {
    width: 90%;
  }
}
.c-form__box__1c__table th, .c-form__box__1c__table td {
  display: block;
}
.c-form__box__1c__table th {
  text-align: left;
  white-space: nowrap;
  width: 15em;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-form__box__1c__table th {
    width: 100%;
  }
}
.c-form__box__1c__table td {
  padding: 0.5em 0 1.5em;
}
@media screen and (max-width: 768px) {
  .c-form__box__1c__table td {
    margin-bottom: 1em;
  }
}
.c-form__box__1c__table__input {
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-form__box__1c__table__input {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .c-form__box__1c__table__input {
    font-size: 1.6rem;
  }
}
.c-form__box__1c__table__textarea {
  height: 10em;
}
.c-form__box__1c__table label {
  margin-right: 1em;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .c-form__box__1c__table label {
    display: block;
    width: 85%;
    margin: 10px 0;
  }
}
.c-form__box__1c__submit {
  text-align: center;
  padding: 1em 0;
}
.c-form__box__1c__submit input[type=submit] {
  padding: 0.5em 3em;
  font-weight: bold;
  border-radius: 3em;
  background: blue;
  border: 1px solid blue;
  color: #fff;
  font-size: 1.6rem;
}

/*===========================================================
h1 ～　h6
===========================================================*/
h2 {
  font-size: 3.2rem;
  margin: 1em 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}

/*===========================================================
dl（説明リスト）の設定
===========================================================*/
.c-dl__table__dl {
  width: 80%;
  margin: auto;
  /*べた塗りバージョン*/
}
@media screen and (max-width: 480px) {
  .c-dl__table__dl {
    width: 100%;
  }
}
.c-dl__table__dl__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .c-dl__table__dl__row {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .c-dl__table__dl__row {
    width: 100%;
  }
}
.c-dl__table__dl dt, .c-dl__table__dl dd {
  padding: 0.5em;
}
.c-dl__table__dl dt {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-dl__table__dl dt {
    border: none;
    padding-bottom: 0;
  }
}
.c-dl__table__dl--solid {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .c-dl__table__dl--solid {
    width: 100%;
  }
}
.c-dl__table__dl--solid__row {
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media screen and (max-width: 768px) {
  .c-dl__table__dl--solid__row {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .c-dl__table__dl--solid__row {
    width: 100%;
  }
}
.c-dl__table__dl--solid dt, .c-dl__table__dl--solid dd {
  padding: 0.5em;
  margin: 0.5em 0;
}
.c-dl__table__dl--solid dt {
  font-weight: bold;
  background: blue;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-dl__table__dl--solid dt {
    margin-top: 1em;
    margin-bottom: 0;
  }
}
.c-dl__table__dl--solid dd {
  background: #efefef;
}
@media screen and (max-width: 768px) {
  .c-dl__table__dl--solid dd {
    margin-top: 0;
    margin-bottom: 1em;
  }
}

/*枠付きバージョン*/
.c-dl__box {
  padding: 50px 0 100px;
  border: 1px solid #ccc;
  width: 85%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-dl__box {
    width: 100%;
  }
}
.c-dl__box h2 {
  margin-top: 0;
}
.c-dl__box__table__dl {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-dl__box__table__dl {
    width: 85%;
  }
}
@media screen and (max-width: 480px) {
  .c-dl__box__table__dl {
    width: 90%;
  }
}
.c-dl__box__table__dl__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .c-dl__box__table__dl__row {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .c-dl__box__table__dl__row {
    width: 100%;
  }
}
.c-dl__box__table__dl dt, .c-dl__box__table__dl dd {
  padding: 0.5em;
}
.c-dl__box__table__dl dt {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-dl__box__table__dl dt {
    border: none;
    padding-bottom: 0;
  }
}

/*===========================================================
グリッドの基本スタイル
===========================================================*/
.c-grid__grid__item {
  padding: 5%;
  background: #efefef;
  margin: 2.5%;
}
.c-grid__grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 480px) {
  .c-grid__grid--2 {
    display: block;
  }
}
.c-grid__grid--3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 480px) {
  .c-grid__grid--3 {
    display: block;
  }
}
.c-grid__grid--4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 480px) {
  .c-grid__grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-grid__grid--5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid__grid--5 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .c-grid__grid--5 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-grid__grid--6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid__grid--6 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .c-grid__grid--6 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-grid__grid--7 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid__grid--7 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .c-grid__grid--7 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-grid__grid--8 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .c-grid__grid--8 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .c-grid__grid--8 {
    grid-template-columns: 1fr 1fr;
  }
}

/*===========================================================
LPの各セクションの設定
===========================================================*/
.o-lp__comic-section {
  text-align: center;
}
.o-lp__comic-section img {
  width: auto;
}

.o-lp__map-section {
  padding-bottom: 0;
}

/*===========================================================
オブジェクト一覧ページのスタイル
===========================================================*/
.p-object-main .container {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-object-title {
  position: fixed;
  z-index: 9999;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .p-object-title {
    top: 120px;
  }
}
@media screen and (max-width: 480px) {
  .p-object-title {
    top: 155px;
  }
}
.p-object-title h2 {
  background: #333;
  color: #fff;
  padding: 0.5em;
  font-size: 1.4rem;
  opacity: 0.8;
}

.p-object__btns-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-object__btns-section ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .p-object__btns-section ul {
    display: block;
  }
}
.p-object__btns-section ul li {
  list-style: none;
  text-align: center;
  margin: 20px 0;
}
.p-object__btns-section ul li p {
  text-align: center;
}

/*===========================================================
margin, paddding, position,レスポンシブ表示切替などの微調整
===========================================================*/
/*pc,tab,spの表示切り替え---------*/
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .u-pc-tab {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tab {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .u-tab {
    display: none;
  }
}

.u-tab-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tab-sp {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-sp {
    display: block;
  }
}

/*------------------------------*/
.u-pagelink {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width: 480px) {
  .u-pagelink {
    margin-top: -88px;
    padding-top: 88px;
  }
}/*# sourceMappingURL=style.css.map */



.c-form__table {
  margin: auto;
}

th {
  padding-right: 2em;
}

.required {
  padding: 0.5em 1em;
  background: #333;
  color: #fff;
  font-weight: bold;
}

.input[submit] {
  width: 150px;
  display: block;
  margin: auto;
}