@charset "UTF-8";
/**************************************************
 * COLOR
 **************************************************/
/* 黄色 */
/* ベージュ */
/* 少し薄いベージュ */
/* 水色 */
/* オレンジ */
/* 茶色 */
/**************************************************
 * WIDTH
 **************************************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  /*display: block;*/
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/**************************************************
 * Common CSS
 **************************************************/
/****** 共通 ***************************************/
html, body, h1, h2, h3, h4, h5, h6, div, p, blockquote, dl, dt, dd, pre, form, fieldset, figure, input, select, textarea, th, td, time, header, footer, main, article, section {
  margin: 0;
  padding: 0;
}

/****** ブロック ************************************/
main {
  display: block;
} /* IE対策 */
iframe {
  border: 0;
  box-sizing: border-box;
}

/****** テキスト ************************************/
html, body {
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  text-align: center;
}

h1, h2, h3, h4, h5, h6, div, p, blockquote, dl, dt, dd, li, pre, form, fieldset, figcaption, input, textarea, select, th, td, address, caption, cite, code, dfn, th, var {
  color: #1d1d1d;
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 100%;
  transform: rotate(0.03deg);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

p, li, dt, dd, th, td, address, blockquote, figcaption {
  line-height: 150%;
}

#copyright {
  transform: rotate(0);
}

/****** リンク ************************************/
a {
  color: #1d1d1d;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  a {
    transition: 0.6s ease-in-out;
  }
  a:hover {
    color: #e00d3f;
  }
}
/****** list **************************************/
ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  padding: 0;
  text-align: left;
}

.komeList li {
  padding-left: 1em;
  text-indent: -1em;
}

/****** 画像 **************************************/
img {
  border: 0;
}

li img, div img {
  vertical-align: bottom;
}

/****** table *************************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  width: 100%;
}

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

th, td {
  border: 1px solid #867565;
  padding: 0.5em;
  text-align: left;
  vertical-align: top;
}

th {
  background: #867565;
}

td {
  background: #fff;
}

td ul {
  margin: 0;
  padding: 0;
}

/****** form **************************************/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=number], textarea, select {
  border: 1px solid #ccc;
  box-sizing: border-box;
  min-height: 2.25em;
  padding: 3px 6px;
  width: 100%;
}

textarea {
  height: 10em;
}

input[type=email]:placeholder-shown,
input[type=url]:placeholder-shown,
input[type=tel]:placeholder-shown,
input[type=text]:placeholder-shown,
input[type=number]:placeholder-shown,
textarea:placeholder-shown {
  color: #ccc;
}

input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}

input[type=email]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}

input[type=submit] {
  appearance: none;
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  margin-right: 0.375em;
  transform: scale(1.6);
}

button:disabled, input:disabled, select:disabled, textarea:disabled {
  background: #e8e8e8 !important;
  border: 1px solid #999 !important;
  color: #999 !important;
  cursor: default !important;
}

.hpVal {
  display: none;
}

.req, .opt {
  color: #fff;
  font-size: 0.75em;
  margin-right: 0.25em;
  padding: 2px 3px;
}

.req {
  background: #e00d3f;
}

.opt {
  background: #006600;
}

/****** blockquote ********************************/
blockquote {
  margin: 2em;
}

/****** clearfix **********************************/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height:auto;
overflow:hidden;
/**/
}

.fltLt {
  float: left;
  margin-right: 1em;
}

.fltRt {
  float: right;
  margin-left: 1em;
}

/****** フォーマット ********************************/
.txtAlgCr {
  text-align: center;
}

.txtAlgLt {
  text-align: left;
}

.txtAlgRt {
  text-align: right;
}

.txtBold {
  font-weight: bold;
}

/****** テキストカラー ****************************/
.errMsg {
  background-color: #e00d3f;
  color: #fff;
}

.txtRed {
  color: #e00d3f;
}

/****** margin-top ********************************/
.mrTop03em {
  margin-top: 0.3em !important;
}

.mrTop06em {
  margin-top: 0.6em !important;
}

.mrTop10em {
  margin-top: 1em !important;
}

.mrTop16em {
  margin-top: 1.6em !important;
}

.mrTop20em {
  margin-top: 2em !important;
}

.mrTop26em {
  margin-top: 2.6em !important;
}

.mrTop42em {
  margin-top: 4.2em !important;
}

/****** width *************************************/
.width03em {
  width: 3em !important;
}

.width06em {
  width: 6em !important;
}

.width07em {
  width: 7em !important;
}

.width08em {
  width: 8em !important;
}

.width09em {
  width: 9em !important;
}

.width10em {
  width: 10em !important;
}

.width11em {
  width: 11em !important;
}

.width12em {
  width: 12em !important;
}

/**************************************************
 * Main CSS
 **************************************************/
/****** 1-01.共通 *********************************/
body {
  position: relative;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
input,
textarea,
select {
  font-size: 1.6rem;
}

/*p,li,dt,dd,th,td,input,textarea,select{font-size:1.125em;}*/
li ul li {
  font-size: 1em;
}

.fix,
.fixReg,
.fixMin {
  margin: 0 auto;
}

.spBr,
.tbBr,
.odBr,
.pcBr {
  display: none;
}

.anchorPoint {
  content: "";
  display: block;
}

.loaderWrap {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 100;
}
.loaderWrap .content {
  color: #e09c0d;
  position: absolute;
}

.loader {
  width: 120px;
  height: 22px;
  border-radius: 20px;
  color: #e09c0d;
  border: 2px solid #1d1d1d;
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 2s infinite;
}

@keyframes l6 {
  100% {
    inset: 0;
  }
}
#logo,
#logoFooter {
  font-weight: 800;
}

.telNumber {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/****** 1-02.header *******************************/
header {
  background-color: rgba(255, 255, 255, 0.88);
  border-bottom: 6px solid #e09c0d;
  text-align: left;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

#headCopy,
#logo {
  line-height: 1em;
}

#headCopy {
  font-weight: 500;
  letter-spacing: 2px;
}

#logo {
  color: #867565;
}

#headerWrap {
  margin: 0 auto;
  padding: 0.5em 0;
}
#headerWrap a {
  box-sizing: border-box;
  display: inline-block;
}

#headerRtBottom .btnTelNumber .fa-circle,
#headerRtBottom .btnTelNumber .telNumber {
  color: #006600;
}
#headerRtBottom .btnTelNumber .fa-stack {
  vertical-align: top;
}
#headerRtBottom .btnTelNumber .telNumber {
  display: inline-block;
  padding-top: 3px;
}
#headerRtBottom .btnEmail {
  background-color: #e00d3f;
  box-sizing: border-box;
  color: #fff;
  display: block;
  text-align: center;
}
#headerRtBottom .btnEmail i {
  margin-right: 0.25em;
}

/****** 1-03.navi *********************************/
#headerRt nav li a,
#menu li a {
  font-size: 1.125em;
}

/****** 1-04.footer *******************************/
#btnPageTop {
  position: fixed;
  bottom: -80px;
  right: 0;
  z-index: 10;
}
#btnPageTop a {
  box-sizing: border-box;
}
#btnPageTop a .fa-square {
  color: #f8cc0f;
}
#btnPageTop a .fa-chevron-up {
  color: #fff;
}

#footerCopy,
#logoFooter {
  line-height: 1em;
}

#footerCopy {
  font-weight: 500;
  letter-spacing: 2px;
}

footer {
  background-color: #e09c0d;
  text-align: left;
}
footer p,
footer li,
footer a {
  color: #fff;
}

#footNav {
  margin-top: 0.75em;
}
#footNav ul {
  display: flex;
  justify-content: flex-start;
}
#footNav ul li:after {
  content: "|";
  margin: 0 0.5em;
}
#footNav ul li:last-child:after {
  content: none;
}

#footRtInfo li {
  line-height: 1em;
  text-align: right;
}

#footRtTelNumber .fa-stack {
  vertical-align: top;
}
#footRtTelNumber .fa-phone-alt {
  color: #e09c0d;
}

#footerBtnList a {
  background-color: #e00d3f;
  box-sizing: border-box;
  color: #fff;
  display: block;
  text-align: center;
}
#footerBtnList a i {
  margin-right: 0.25em;
}

#copyright {
  background-color: #867565;
  text-align: center;
}
#copyright small {
  font-size: 0.875em;
}

/****** 1-05.main *********************************/
main > section:nth-of-type(even) {
  background-color: #fafafa;
}
main section {
  text-align: left;
}
main p:nth-of-type(n+2) {
  margin-top: 0.5em;
}
main .sectionTitle {
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.25em;
  text-align: center;
}

#pageTitle {
  position: relative;
  width: 100%;
}
#pageTitle h1 {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1em;
  font-weight: 800;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}
#pageTitle h1 span {
  display: block;
}
#pageTitle h1 .ja {
  color: #1d1d1d;
  letter-spacing: 0.1em;
  line-height: 1em;
}
#pageTitle h1 .en {
  color: #999;
  letter-spacing: 0.5em;
  line-height: 2em;
}
#pageTitle .pageTitleBk {
  height: 20em;
  width: 100%;
  overflow: hidden;
}
#pageTitle .pageTitleBk figure {
  background-image: url(../img/common/000.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20em;
  width: 100%;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transition: all 12s ease-in-out;
  -webkit-transition: all 12s ease-in-out;
}

.zoomOut #pageTitle figure {
  transform: scale(1);
  -webkit-transform: scale(1);
}

.markPink {
  background: linear-gradient(transparent 70%, #f0c4ec 70%);
}

#secAreaList p,
#secAreaList li {
  font-size: 1.125em;
}

#areaListWrap .item {
  background-color: #fff;
  border: 1px solid #e09c0d;
  padding: 1em;
}

/****** 1-06.index ********************************/
#index .sectionTitle {
  color: #867565;
}

#indexSection1st img {
  border-radius: 1em;
  height: auto;
  max-width: 1920px;
}
#indexSection1st h2 {
  color: #e00d3f;
}
#indexSection1st h3 {
  font-weight: 500;
}

#kaitoriList .indexItem {
  background-color: #fff;
  border: 1px solid #e09c0d;
  border-radius: 1em;
}
#kaitoriList .indexItem p {
  font-size: 1.125em;
}
#kaitoriList h3 .number {
  background-color: #e09c0d;
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  text-align: center;
}
#kaitoriList h3 .title {
  display: block;
  font-weight: 500;
  text-align: center;
}

#indexSection3rdContentsWrap .indexItem {
  border: 1px solid #867565;
}
#indexSection3rdContentsWrap h3 {
  color: #e00d3f;
  text-align: center;
}
#indexSection3rdContentsWrap p {
  font-size: 1.125em;
}

#indexSection3rdFigure {
  background: url(../img/index/002.jpg) no-repeat center center;
  background-size: cover;
}

#indexPointList .itemPoint {
  background-color: #fff;
  border: 1px solid #e09c0d;
  border-radius: 1em;
}
#indexPointList .itemPoint p {
  font-size: 1.125em;
}
#indexPointList h3 .number {
  background-color: #e00d3f;
  color: #fff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  text-align: center;
}
#indexPointList h3 .title {
  display: block;
  font-weight: 500;
  text-align: center;
}

#indexSection5thContent p {
  font-size: 1.125em;
}
#indexSection5thContent dd i {
  color: #ed5752;
}

#indexSection5thFigure {
  background: url(../img/index/003.jpg) no-repeat right center;
  background-size: cover;
}

#indexSection6th .copy {
  font-size: 1.125em;
}

#resultsList li {
  text-align: center;
}
#resultsList img {
  height: auto;
  width: 100%;
}

#stationSectionContent p,
#stationSectionContent li {
  font-size: 1.125em;
}

#stationList {
  margin-top: 2em;
}
#stationList i {
  color: #e09c0d;
  margin-right: 0.25em;
}

#indexSectionStationFigure {
  background: url(../img/index/004.jpg) no-repeat center center;
  background-size: cover;
}

/****** 1-07.sitemap ******************************/
#sitemapSection li {
  font-size: 1.125em;
}
#sitemapSection li a {
  display: inline-block;
}
#sitemapSection li i {
  color: #e09c0d;
  margin-right: 0.125em;
}
#sitemapSection .sitemapWrap .item {
  border: 1px solid #e09c0d;
  padding: 1em;
  background: white;
}

/****** 1-08.privacy ******************************/
#privacyDiv > section {
  padding-bottom: 2em;
}
#privacyDiv > section:last-of-type {
  padding-bottom: 0;
}
#privacyDiv p,
#privacyDiv li {
  font-size: 1.125em;
}
#privacyDiv ol {
  list-style-type: decimal;
  margin-left: 1.75em;
}
#privacyDiv ol li {
  margin-top: 0.5em;
}

/****** 1-09.information **************************/
#infoDiv table {
  border: 0;
}
#infoDiv tr {
  border-bottom: 1px dashed #867565;
}
#infoDiv tr:last-of-type {
  border-bottom: 0;
}
#infoDiv th,
#infoDiv td {
  background-color: transparent;
  border: 0;
  font-size: 1.125em;
  padding: 0.375em 0;
}
#infoDiv th {
  color: #867565;
}

/****** 1-10.area *********************************/
#areaGuide,
.areaListWrap li {
  font-size: 1.125em;
}

.areaListWrap .item {
  border: 1px solid #e09c0d;
  padding: 1em;
}

/****** 1-11.example ******************************/
#exampleGuide,
#exampleBikeList h2,
#exampleBikeList li {
  font-size: 1.125em;
}

#exampleBikeList h2 {
  font-weight: 500;
}
#exampleBikeList img {
  height: auto;
  width: 100%;
}

/****** 1-12.flow *********************************/
#flowWrap .item {
  border: 1px solid #e09c0d;
  border-radius: 0.5em;
  overflow: hidden;
}
#flowWrap .item img {
  height: auto;
}
#flowWrap h2 .number {
  background-color: #e09c0d;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#flowWrap .flowTel .telNumber {
  color: #006600;
}
#flowWrap .tellMe i {
  color: #e09c0d;
}
#flowWrap .arrowDown {
  text-align: center;
}
#flowWrap .arrowDown img {
  height: auto;
}

/**************************************************
 * 1280px以上
 **************************************************/
@media screen and (min-width: 1280px) {
  /****** 2-01.共通 *********************************/
  a[href^="tel:"] {
    pointer-events: none;
  }
  .anchorPoint {
    margin-top: -90px;
    padding-top: 90px;
  }
  main .fix {
    width: 1200px;
  }
  main .fixReg {
    width: 960px;
  }
  main .fixMin {
    width: 748px;
  }
  .pcNone {
    display: none !important;
  }
  .pcBr {
    display: inline-block !important;
  }
  /****** 2-02.header *******************************/
  #headerWrap {
    display: flex;
    justify-content: space-between;
    width: 96%;
  }
  #headCopy {
    font-size: 1.125em;
  }
  #logo {
    font-size: 3em;
  }
  #headerRtBottom {
    margin-top: 0.5em;
  }
  #headerRtBottom ul {
    align-items: flex-end;
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  #headerRtBottom .telNumber {
    font-size: 2.25em;
  }
  #headerRtBottom .btnEmail {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #headerRtBottom .btnEmail:hover {
    background-color: rgba(224, 13, 63, 0.7);
  }
  /****** 2-03.navi *********************************/
  #menu {
    display: none;
  }
  #menu-button {
    display: none;
  }
  #headerRt nav ul {
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  /****** 2-04.footer *******************************/
  #floatingMenu {
    display: none;
  }
  #btnPageTop a .fa-square {
    transition: 0.6s ease-in-out;
  }
  #btnPageTop a:hover .fa-square {
    color: #e00d3f;
  }
  #footerCopy {
    font-size: 1.5em;
  }
  #logoFooter {
    font-size: 3.75em;
  }
  #footInfo {
    margin-top: 1em;
  }
  #footInfo li {
    font-size: 1.125em;
  }
  #footNav li {
    font-size: 1.125em;
  }
  #copyright {
    line-height: 2em;
  }
  footer .fix {
    padding: 1em 0;
    width: 96%;
  }
  #footerWrap {
    display: flex;
  }
  #footerWrap .item {
    width: 50%;
  }
  #footerRtWrap {
    align-items: center;
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  #footRtInfo li {
    font-size: 1.125em;
    line-height: 1.5em;
  }
  #footRtTelNumber li .telNumber {
    font-size: 3em;
  }
  #footRtTelNumber i {
    margin-right: 0.125em;
  }
  #footerBtnList {
    display: flex;
    gap: 1em;
    justify-content: flex-end;
    margin-top: 1em;
  }
  #footerBtnList a {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #footerBtnList a:hover {
    background-color: rgba(224, 13, 63, 0.7);
  }
  #footRt p {
    font-size: 1.125em;
    margin-top: 1em;
    text-align: right;
  }
  /****** 2-05.main *********************************/
  main {
    padding: 114px 0 0;
  }
  main.underPage > section {
    padding: 3em 0;
  }
  main .btnInSite a:hover {
    background-color: #e00d3f;
  }
  main .linkText:hover {
    border-bottom: 1px dashed #e00d3f;
    color: #e00d3f;
  }
  main .sectionTitle {
    font-size: 2.25em;
  }
  #pageTitle h1 {
    padding: 1em 2em 0.5em;
  }
  #pageTitle h1 .pic {
    margin-bottom: 0.5em;
  }
  #pageTitle h1 .ja {
    font-size: 3em;
  }
  #pageTitle h1 .en {
    font-size: 1.5em;
  }
  #secAreaList .att {
    margin: 0 auto;
    width: fit-content;
  }
  #areaListWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  #areaListWrap .item {
    width: 32%;
  }
  #areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  #areaListWrap ul li {
    width: 33%;
  }
  /****** 2-06.index ********************************/
  #index .sectionTitle {
    font-size: 3.75em;
    margin-bottom: 0.375em;
  }
  #indexSection1st .fix {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 1em 0 3em;
    width: 96%;
  }
  #indexSection1st .fix figure.item {
    width: 65%;
  }
  #indexSection1st .fix figure.item img {
    width: 100%;
  }
  #indexSection1st .fix div.item {
    padding: 2em 0 2em 2em;
    width: 35%;
  }
  #indexSection1st .fix h1,
  #indexSection1st .fix h2,
  #indexSection1st .fix h3 {
    text-align: center;
  }
  #indexSection1st .fix h1 {
    font-size: 2.25em;
  }
  #indexSection1st .fix h2 {
    font-size: 4.5em;
    margin: 0.375em 0;
  }
  #indexSection1st .fix h3 {
    font-size: 1.875em;
    line-height: 1.75em;
  }
  #indexSection1st .fix p {
    font-size: 1.5em;
    line-height: 1.75em;
    margin-top: 1em;
  }
  #indexSection2nd {
    padding: 3em 0;
  }
  #indexSection2nd .sectionTitle {
    text-align: left;
  }
  #indexSection2nd .copy {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  #kaitoriList {
    display: flex;
    justify-content: space-between;
  }
  #kaitoriList .indexItem {
    padding: 1em 1.5em 1.5em;
    width: 22.5%;
  }
  #kaitoriList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #kaitoriList h3 .title {
    font-size: 1.875em;
    margin: 1em 0;
  }
  #indexSection3rd {
    display: flex;
    justify-content: center;
  }
  #indexSection3rd .item {
    width: 50%;
  }
  #indexSection3rdContents {
    margin: 0 auto;
    max-width: 960px;
    padding: 3em 2em;
  }
  #indexSection3rdContents .sectionTitle {
    text-align: left;
  }
  #indexSection3rdContentsWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
  }
  #indexSection3rdContentsWrap .indexItem {
    padding: 1.5em;
    width: calc(50% - 1em);
  }
  #indexSection3rdContentsWrap h3 {
    font-size: 2.25em;
    margin-bottom: 1em;
  }
  #indexSection3rdFigure {
    background-position-y: 20%;
  }
  #indexSection4th {
    padding: 3em 0;
  }
  #indexSection4th .copy {
    font-size: 1.5em;
    text-align: center;
  }
  #indexPointList {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  #indexPointList .itemPoint {
    padding: 1.5em;
    width: 30%;
  }
  #indexPointList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #indexPointList h3 .title {
    font-size: 1.875em;
    margin: 1em 0;
  }
  #indexSection5th {
    display: flex;
    justify-content: center;
  }
  #indexSection5th .item {
    width: 50%;
  }
  #indexSection5thContent {
    margin: 0 auto;
    max-width: 960px;
    min-height: 640px;
    padding: 3em 2em;
  }
  #indexSection5thContent h2 {
    letter-spacing: normal;
    text-align: left;
  }
  #indexSection5thContent dl {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 2em auto 0;
    width: 24em;
  }
  #indexSection5thContent dt,
  #indexSection5thContent dd {
    font-size: 1.5em;
  }
  #indexSection5thContent dt {
    width: 5em;
  }
  #indexSection5thContent dd {
    width: 9em;
  }
  #indexSection5thContent dd i {
    margin-right: 1em;
  }
  #indexSection6th {
    padding: 3em 0;
  }
  #indexSection6th .copy {
    margin-bottom: 2em;
    text-align: center;
  }
  #resultsList {
    display: flex;
    flex-wrap: wrap;
    gap: 2em 4%;
  }
  #resultsList li {
    width: 22%;
  }
  #secAreaList {
    padding: 3em 0;
  }
  #stationSection {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    min-height: 527px;
  }
  #stationSection .item {
    width: 50%;
  }
  #stationSection .sectionTitle {
    letter-spacing: normal;
    text-align: left;
  }
  #stationSectionContent {
    max-width: 960px;
    padding: 3em 2em;
  }
  #stationList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  #stationList li {
    width: 30%;
  }
  /****** 2-07.sitemap ******************************/
  #sitemapSection #defaultPage {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap .item {
    width: 32%;
  }
  #sitemapSection .sitemapWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap ul li {
    width: 33%;
  }
  /****** 2-08.privacy ******************************/
  #privacyDiv {
    padding: 3em 0;
  }
  #privacyDiv h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  /****** 2-09.information **************************/
  /****** 2-10.area *********************************/
  #areaGuide {
    margin: 0 auto;
    width: fit-content;
  }
  .areaListWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  .areaListWrap .item {
    width: 32%;
  }
  .areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  .areaListWrap ul li {
    width: 33%;
  }
  /****** 2-11.example ******************************/
  #exampleGuide {
    margin: 0 auto;
    width: fit-content;
  }
  #exampleBikeList {
    margin-top: 2em;
  }
  /****** 2-12.flow *********************************/
  #flowWrap .item {
    display: flex;
    justify-content: center;
  }
  #flowWrap .item .flowItem {
    width: 50%;
  }
  #flowWrap .item div.flowItem {
    padding: 2em;
  }
  #flowWrap .item div.flowItem p {
    font-size: 1.125em;
  }
  #flowWrap .item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  #flowWrap h2 {
    line-height: 3em;
    margin-bottom: 1em;
  }
  #flowWrap h2 .number {
    border-radius: 1em;
    display: inline-block;
    font-size: 1.5em;
    height: 2em;
    margin-right: 0.25em;
    text-align: center;
    width: 2em;
  }
  #flowWrap h2 .text {
    font-size: 1.5em;
  }
  #flowWrap .flowTel {
    margin-bottom: 1em;
  }
  #flowWrap .flowTel li {
    text-align: center;
  }
  #flowWrap .flowTel li.telNumber {
    font-size: 2em;
  }
  #flowWrap .flowTel li.telInformation {
    font-size: 1.125em;
  }
  #flowWrap .tellMe {
    margin-top: 1em;
  }
  #flowWrap .tellMe li {
    font-size: 1.125em;
  }
  #flowWrap .tellMe li:nth-child(n+2) {
    margin-top: 0.5em;
  }
  #flowWrap .arrowDown {
    margin: 2em 0;
  }
  #flowWrap .arrowDown img {
    width: 30%;
  }
}
/* End of @media screen and (min-width:1280px) */
/**************************************************
 * 1024px以上1279px以下
 **************************************************/
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  /****** 3-01.共通 *********************************/
  html {
    overflow-x: hidden;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .anchorPoint {
    margin-top: -90px;
    padding-top: 90px;
  }
  main .fix,
  main .fixReg {
    width: 960px;
  }
  main .fixMin {
    width: 748px;
  }
  .odNone {
    display: none !important;
  }
  .odBr {
    display: inline-block !important;
  }
  /****** 3-02.header *******************************/
  #headerWrap {
    display: flex;
    justify-content: space-between;
    width: 96%;
  }
  #headCopy {
    font-size: 1.125em;
  }
  #logo {
    font-size: 3em;
  }
  #headerRtBottom {
    margin-top: 0.5em;
  }
  #headerRtBottom ul {
    align-items: flex-end;
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  #headerRtBottom .telNumber {
    font-size: 2.25em;
  }
  #headerRtBottom .btnEmail {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #headerRtBottom .btnEmail:hover {
    background-color: rgba(224, 13, 63, 0.7);
  }
  /****** 3-03.navi *********************************/
  #menu {
    display: none;
  }
  #menu-button {
    display: none;
  }
  #headerRt nav ul {
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  /****** 3-04.footer *******************************/
  #floatingMenu {
    display: none;
  }
  #btnPageTop a .fa-square {
    transition: 0.6s ease-in-out;
  }
  #btnPageTop a:hover .fa-square {
    color: #e00d3f;
  }
  #footerCopy {
    font-size: 1.5em;
  }
  #logoFooter {
    font-size: 3.75em;
  }
  #footInfo {
    margin-top: 1em;
  }
  #footInfo li {
    font-size: 1.125em;
  }
  #footNav li {
    font-size: 1.125em;
  }
  #copyright {
    line-height: 2em;
  }
  footer .fix {
    padding: 1em 0;
    width: 96%;
  }
  #footerWrap {
    display: flex;
  }
  #footerWrap #footLt {
    width: 45%;
  }
  #footerWrap #footRt {
    width: 55%;
  }
  #footerRtWrap {
    align-items: center;
    display: flex;
    gap: 1em;
    justify-content: flex-end;
  }
  #footRtInfo li {
    font-size: 1.125em;
    line-height: 1.5em;
  }
  #footRtTelNumber li .telNumber {
    font-size: 2.5em;
  }
  #footRtTelNumber i {
    margin-right: 0.125em;
  }
  #footerBtnList {
    display: flex;
    gap: 1em;
    justify-content: flex-end;
    margin-top: 1em;
  }
  #footerBtnList a {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #footerBtnList a:hover {
    background-color: rgba(224, 13, 63, 0.7);
  }
  #footRt p {
    font-size: 1.125em;
    margin-top: 1em;
    text-align: right;
  }
  /****** 3-05.main *********************************/
  main {
    padding: 114px 0 0;
  }
  main.underPage > section {
    padding: 3em 0;
  }
  main .btnInSite a:hover {
    background-color: #e00d3f;
  }
  main .linkText:hover {
    border-bottom: 1px dashed #e00d3f;
    color: #e00d3f;
  }
  main .sectionTitle {
    font-size: 2.25em;
  }
  #pageTitle h1 {
    padding: 1em 2em 0.5em;
  }
  #pageTitle h1 .pic {
    margin-bottom: 0.5em;
  }
  #pageTitle h1 .ja {
    font-size: 3em;
  }
  #pageTitle h1 .en {
    font-size: 1.5em;
  }
  #secAreaList .att {
    margin: 0 auto;
    width: fit-content;
  }
  #areaListWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  #areaListWrap .item {
    width: 32%;
  }
  #areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  #areaListWrap ul li {
    font-size: 1em;
    width: 33%;
  }
  /****** 3-06.index ********************************/
  #index .sectionTitle {
    font-size: 3.5em;
    letter-spacing: normal;
    margin-bottom: 0.375em;
  }
  #indexSection1st .fix {
    padding: 1em 0 3em;
    position: relative;
    height: calc(100vh - 90px);
    width: 96%;
  }
  #indexSection1st .fix .item {
    position: absolute;
  }
  #indexSection1st .fix figure.item {
    height: calc(100vh - 122px);
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 1em;
  }
  #indexSection1st .fix figure.item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  #indexSection1st .fix div.item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1em;
    padding: 2em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  #indexSection1st .fix div.item .contents {
    width: 425px;
  }
  #indexSection1st .fix h1,
  #indexSection1st .fix h2,
  #indexSection1st .fix h3 {
    text-align: center;
  }
  #indexSection1st .fix h1 {
    font-size: 2.25em;
  }
  #indexSection1st .fix h2 {
    font-size: 4.5em;
    margin: 0.375em 0;
  }
  #indexSection1st .fix h3 {
    font-size: 1.875em;
    line-height: 1.75em;
  }
  #indexSection1st .fix p {
    font-size: 1.5em;
    line-height: 1.75em;
    margin-top: 1em;
  }
  #indexSection2nd {
    padding: 3em 0;
  }
  #indexSection2nd .sectionTitle {
    text-align: left;
  }
  #indexSection2nd .copy {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  #kaitoriList {
    display: flex;
    justify-content: space-between;
  }
  #kaitoriList .indexItem {
    padding: 1em 1.5em 1.5em;
    width: 22.5%;
  }
  #kaitoriList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #kaitoriList h3 .title {
    font-size: 1.875em;
    line-height: 1.125em;
    margin: 1em 0;
  }
  #indexSection3rd {
    display: flex;
    justify-content: center;
  }
  #indexSection3rd .item {
    width: 50%;
  }
  #indexSection3rdContents {
    margin: 0 auto;
    max-width: 960px;
    padding: 3em 2em;
  }
  #indexSection3rdContents .sectionTitle {
    text-align: left;
  }
  #indexSection3rdContentsWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  #indexSection3rdContentsWrap .indexItem {
    padding: 1em;
    width: calc(50% - 0.5em);
  }
  #indexSection3rdContentsWrap h3 {
    font-size: 1.875em;
    margin-bottom: 0.5em;
  }
  #indexSection3rdFigure {
    background-position-y: 20%;
  }
  #indexSection4th {
    padding: 3em 0;
  }
  #indexSection4th .copy {
    font-size: 1.5em;
    text-align: center;
  }
  #indexPointList {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  #indexPointList .itemPoint {
    padding: 1.5em;
    width: 30%;
  }
  #indexPointList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #indexPointList h3 .title {
    font-size: 1.875em;
    margin: 1em 0;
  }
  #indexSection5th {
    display: flex;
    justify-content: center;
  }
  #indexSection5th .item {
    width: 50%;
  }
  #indexSection5thContent {
    margin: 0 auto;
    max-width: 960px;
    min-height: 640px;
    padding: 3em 2em;
  }
  #indexSection5thContent h2 {
    letter-spacing: normal;
    text-align: left;
  }
  #indexSection5thContent dl {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 2em auto 0;
    width: 24em;
  }
  #indexSection5thContent dt,
  #indexSection5thContent dd {
    font-size: 1.5em;
  }
  #indexSection5thContent dt {
    width: 5em;
  }
  #indexSection5thContent dd {
    width: 9em;
  }
  #indexSection5thContent dd i {
    margin-right: 1em;
  }
  #indexSection6th {
    padding: 3em 0;
  }
  #indexSection6th .copy {
    margin-bottom: 2em;
    text-align: center;
  }
  #resultsList {
    display: flex;
    flex-wrap: wrap;
    gap: 2em 4%;
  }
  #resultsList li {
    width: 22%;
  }
  #secAreaList {
    padding: 3em 0;
  }
  #stationSection {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    min-height: 527px;
  }
  #stationSection .item {
    width: 50%;
  }
  #stationSection .sectionTitle {
    letter-spacing: normal;
    text-align: left;
  }
  #stationSectionContent {
    max-width: 960px;
    padding: 3em 2em;
  }
  #stationList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  #stationList li {
    width: 30%;
  }
  /****** 3-07.sitemap ******************************/
  #sitemapSection #defaultPage {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap .item {
    width: 32%;
  }
  #sitemapSection .sitemapWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap ul li {
    font-size: 1em;
    width: 33%;
  }
  /****** 3-08.privacy ******************************/
  #privacyDiv {
    padding: 3em 0;
  }
  #privacyDiv h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  /****** 3-09.information **************************/
  /****** 3-10.area *********************************/
  #areaGuide {
    margin: 0 auto;
    width: fit-content;
  }
  .areaListWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  .areaListWrap .item {
    width: 32%;
  }
  .areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  .areaListWrap ul li {
    font-size: 1em;
    width: 33%;
  }
  /****** 3-11.example ******************************/
  #exampleGuide {
    margin: 0 auto;
    width: fit-content;
  }
  #exampleBikeList {
    margin-top: 2em;
  }
  /****** 3-12.flow *********************************/
  #flowWrap .item {
    display: flex;
    justify-content: center;
  }
  #flowWrap .item .flowItem {
    width: 50%;
  }
  #flowWrap .item div.flowItem {
    padding: 2em;
  }
  #flowWrap .item div.flowItem p {
    font-size: 1.125em;
  }
  #flowWrap .item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  #flowWrap h2 {
    line-height: 3em;
    margin-bottom: 1em;
  }
  #flowWrap h2 .number {
    border-radius: 1em;
    display: inline-block;
    font-size: 1.5em;
    height: 2em;
    margin-right: 0.25em;
    text-align: center;
    width: 2em;
  }
  #flowWrap h2 .text {
    font-size: 1.5em;
  }
  #flowWrap .flowTel {
    margin-bottom: 1em;
  }
  #flowWrap .flowTel li {
    text-align: center;
  }
  #flowWrap .flowTel li.telNumber {
    font-size: 2em;
  }
  #flowWrap .flowTel li.telInformation {
    font-size: 1.125em;
  }
  #flowWrap .tellMe {
    margin-top: 1em;
  }
  #flowWrap .tellMe li {
    font-size: 1.125em;
  }
  #flowWrap .tellMe li:nth-child(n+2) {
    margin-top: 0.5em;
  }
  #flowWrap .arrowDown {
    margin: 2em 0;
  }
  #flowWrap .arrowDown img {
    width: 30%;
  }
}
/* End of @media screen and (min-width:1024px) and (max-width:1279px) */
/**************************************************
 * 768px以上1023px以下
 **************************************************/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /****** 4-01.共通 *********************************/
  html {
    overflow-x: hidden;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .anchorPoint {
    margin-top: -88px;
    padding-top: 88px;
  }
  main .fix,
  main .fixReg,
  main .fixMin {
    width: 748px;
  }
  .tbNone {
    display: none !important;
  }
  .tbBr {
    display: inline-block !important;
  }
  /****** 4-02.header *******************************/
  #headerWrap {
    display: flex;
    justify-content: space-between;
    width: 96%;
  }
  #headCopy {
    font-size: 1.125em;
  }
  #logo {
    font-size: 3em;
  }
  #headerRtBottom,
  #headerRt nav {
    display: none;
  }
  /****** 4-03.navi *********************************/
  #menu-button {
    background-color: transparent;
    position: fixed;
    top: 16px;
    right: 10px;
    display: grid;
    place-items: center;
    place-content: center;
    width: 52px;
    height: 46px;
    border: none;
    cursor: pointer;
    z-index: 999;
  }
  /* バー */
  .bar,
  .bar::before,
  .bar::after {
    width: 52px;
    height: 6px;
    background-color: #1d1d1d;
    transition: transform 0.3s;
  }
  .bar {
    display: grid;
  }
  .bar::before, .bar::after {
    content: "";
    grid-area: 1/1;
  }
  .bar::before {
    transform: translateY(-18px);
  }
  .bar::after {
    transform: translateY(18px);
  }
  /* オープン時のバー */
  .menu-open .bar {
    background-color: transparent;
  }
  .menu-open .bar::before {
    transform: rotate(45deg);
    background-color: #1d1d1d;
  }
  .menu-open .bar::after {
    transform: rotate(-45deg);
    background-color: #1d1d1d;
  }
  /* メニューラベル */
  .menu-label {
    transform: translateY(2em);
    font-size: 0.875em;
    color: #1d1d1d;
  }
  .menu-open .menu-label {
    color: #1d1d1d;
  }
  /* オーバーレイ */
  #overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    z-index: 997;
    transition: opacity 0.3s;
  }
  /* オープン時のオーバーレイ */
  .menu-open #overlay {
    visibility: visible;
    opacity: 1;
  }
  /* メニュー */
  #menu {
    background-color: transparent;
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 998;
    transform: translateY(-150vh);
    transition: transform 0.3s ease-out;
  }
  #menu ul:before {
    content: "";
    display: block;
    height: 72px;
    width: 100%;
  }
  #menu li a {
    border-bottom: 1px dashed #ccc;
    box-sizing: border-box;
    color: #1d1d1d;
    font-size: 1.5em;
    display: block;
    height: 3em;
    line-height: 3em;
    text-align: center;
  }
  #menu li:last-child a {
    border-bottom: 0;
  }
  /* オープン時のメニュー */
  .menu-open #menu {
    transform: translateX(0);
  }
  /* body */
  body {
    overflow-x: clip;
    /* オープン時のbody */
  }
  body.menu-open {
    overflow: clip;
  }
  /* 横向き */
  /****** 4-04.footer *******************************/
  /****** 4-05.main *********************************/
  /****** 4-06.index ********************************/
  /* 横向き */
  /****** 4-07.sitemap ******************************/
  /****** 4-08.privacy ******************************/
  /****** 4-09.information **************************/
  /****** 4-10.area *********************************/
  /****** 4-11.example ******************************/
  /****** 4-12.flow *********************************/
}
@media screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  #menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3em;
  }
  #menu ul:before {
    content: none;
  }
  #menu ul li {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #floatingMenu {
    display: none;
  }
  #btnPageTop a .fa-square {
    transition: 0.6s ease-in-out;
  }
  #footerCopy {
    font-size: 1.5em;
  }
  #logoFooter {
    font-size: 3.75em;
  }
  #footInfo {
    margin-top: 1em;
  }
  #footInfo li {
    font-size: 1.125em;
  }
  #footNav li {
    font-size: 1.125em;
  }
  #copyright {
    line-height: 2em;
  }
  footer .fix {
    padding: 1em 0;
    width: 96%;
  }
  #footerWrap #footRt {
    margin-top: 2em;
  }
  #footerRtWrap {
    align-items: center;
    display: flex;
    gap: 1em;
    justify-content: center;
  }
  #footRtInfo li {
    font-size: 1.125em;
    line-height: 1.5em;
  }
  #footRtTelNumber li .telNumber {
    font-size: 2.5em;
  }
  #footRtTelNumber i {
    margin-right: 0.125em;
  }
  #footerBtnList {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 1em;
  }
  #footerBtnList a {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #footRt p {
    font-size: 1.125em;
    margin-top: 1em;
    text-align: center;
  }
  main {
    padding: 114px 0 0;
  }
  main.underPage > section {
    padding: 3em 0;
  }
  main .sectionTitle {
    font-size: 2.25em;
  }
  #pageTitle h1 {
    padding: 1em 2em 0.5em;
  }
  #pageTitle h1 .pic {
    margin-bottom: 0.5em;
  }
  #pageTitle h1 .ja {
    font-size: 3em;
  }
  #pageTitle h1 .en {
    font-size: 1.5em;
  }
  #secAreaList .att {
    margin: 0 auto;
    width: fit-content;
  }
  #areaListWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  #areaListWrap .item {
    width: 100%;
  }
  #areaListWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #areaListWrap .item:nth-of-type(n+3) {
    margin-top: 2em;
  }
  #areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  #areaListWrap ul li {
    font-size: 1em;
    width: 50%;
  }
  #index .sectionTitle {
    font-size: 3.5em;
    letter-spacing: normal;
    margin-bottom: 0.375em;
  }
  #indexSection1st .fix {
    height: calc(100vh - 88px);
    padding: 1em 0;
    position: relative;
    width: 96%;
  }
  #indexSection1st .fix .item {
    position: absolute;
  }
  #indexSection1st .fix figure.item {
    height: calc(100vh - 122px);
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 1em;
  }
  #indexSection1st .fix figure.item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  #indexSection1st .fix div.item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1em;
    padding: 2em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  #indexSection1st .fix div.item .contents {
    width: 425px;
  }
  #indexSection1st .fix h1,
  #indexSection1st .fix h2,
  #indexSection1st .fix h3 {
    text-align: center;
  }
  #indexSection1st .fix h1 {
    font-size: 2.25em;
  }
  #indexSection1st .fix h2 {
    font-size: 4.5em;
    margin: 0.375em 0;
  }
  #indexSection1st .fix h3 {
    font-size: 1.875em;
    line-height: 1.75em;
  }
  #indexSection1st .fix p {
    font-size: 1.5em;
    line-height: 1.75em;
    margin-top: 1em;
  }
  #indexSection2nd {
    padding: 3em 0;
  }
  #indexSection2nd .sectionTitle {
    text-align: left;
  }
  #indexSection2nd .copy {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  #kaitoriList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #kaitoriList .indexItem {
    padding: 1em 1.5em 1.5em;
    width: 48%;
  }
  #kaitoriList .indexItem:nth-of-type(n+3) {
    margin-top: 2em;
  }
  #kaitoriList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #kaitoriList h3 .title {
    font-size: 1.875em;
    line-height: 1.125em;
    margin: 1em 0;
  }
  #indexSection3rdContents {
    margin: 0 auto;
    max-width: 960px;
    padding: 3em 2em;
  }
  #indexSection3rdContents .sectionTitle {
    text-align: left;
  }
  #indexSection3rdContentsWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #indexSection3rdContentsWrap .indexItem {
    padding: 1em;
    width: 48%;
  }
  #indexSection3rdContentsWrap .indexItem:nth-of-type(n+3) {
    margin-top: 2em;
  }
  #indexSection3rdContentsWrap h3 {
    font-size: 1.875em;
    margin-bottom: 0.5em;
  }
  #indexSection3rdFigure {
    background-position-y: 20%;
    height: 60vh;
  }
  #indexSection4th {
    padding: 3em 0;
  }
  #indexSection4th .copy {
    font-size: 1.5em;
    text-align: center;
  }
  #indexPointList .itemPoint {
    margin: 1.5em auto 0;
    padding: 1.5em;
    width: 72%;
  }
  #indexPointList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #indexPointList h3 .title {
    font-size: 1.875em;
    margin: 1em 0;
  }
  #indexSection5thContent {
    margin: 0 auto;
    max-width: 960px;
    padding: 3em 2em;
  }
  #indexSection5thContent .sectionTitle {
    letter-spacing: normal;
  }
  #indexSection5thContent dl {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 2em auto 0;
    width: 24em;
  }
  #indexSection5thContent dt,
  #indexSection5thContent dd {
    font-size: 1.5em;
  }
  #indexSection5thContent dt {
    width: 5em;
  }
  #indexSection5thContent dd {
    width: 9em;
  }
  #indexSection5thContent dd i {
    margin-right: 1em;
  }
  #indexSection5thFigure {
    height: 60vh;
  }
  #indexSection6th {
    padding: 3em 0;
  }
  #indexSection6th .copy {
    margin-bottom: 2em;
    text-align: center;
  }
  #resultsList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2%;
  }
  #resultsList li {
    width: 32%;
  }
  #secAreaList {
    padding: 3em 0;
  }
  #stationSection .sectionTitle {
    letter-spacing: normal;
    text-align: left;
  }
  #stationSectionContent {
    max-width: 960px;
    padding: 3em 2em;
  }
  #stationList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  #stationList li {
    width: 30%;
  }
  #indexSectionStationFigure {
    height: 60vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  #indexSection1st .fix {
    min-height: 685px;
  }
  #indexSection1st .fix figure.item {
    min-height: 653px;
  }
  #indexSection3rdFigure,
  #indexSection5thFigure,
  #indexSectionStationFigure {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #sitemapSection #defaultPage {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap .item {
    width: 100%;
  }
  #sitemapSection .sitemapWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap .item:nth-of-type(n+3) {
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap ul li {
    font-size: 1em;
    width: 50%;
  }
  #privacyDiv {
    padding: 3em 0;
  }
  #privacyDiv h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #areaGuide {
    margin: 0 auto;
    width: fit-content;
  }
  .areaListWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.5em;
  }
  .areaListWrap .item {
    width: 100%;
  }
  .areaListWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  .areaListWrap .item:nth-of-type(n+3) {
    margin-top: 2em;
  }
  .areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  .areaListWrap ul li {
    font-size: 1em;
    width: 33%;
  }
  #exampleGuide {
    margin: 0 auto;
    width: 90%;
  }
  #exampleBikeList {
    margin-top: 2em;
  }
  #flowWrap .item {
    display: flex;
    justify-content: center;
  }
  #flowWrap .item div.flowItem {
    padding: 2em;
    width: 60%;
  }
  #flowWrap .item div.flowItem p {
    font-size: 1.125em;
  }
  #flowWrap .item figure.flowItem {
    overflow: hidden;
    width: 40%;
  }
  #flowWrap .item figure.flowItem img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  #flowWrap .item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  #flowWrap h2 {
    line-height: 3em;
    margin-bottom: 1em;
  }
  #flowWrap h2 .number {
    border-radius: 1em;
    display: inline-block;
    font-size: 1.5em;
    height: 2em;
    margin-right: 0.25em;
    text-align: center;
    width: 2em;
  }
  #flowWrap h2 .text {
    font-size: 1.5em;
  }
  #flowWrap .flowTel {
    margin-bottom: 1em;
  }
  #flowWrap .flowTel li {
    text-align: center;
  }
  #flowWrap .flowTel li.telNumber {
    font-size: 2em;
  }
  #flowWrap .flowTel li.telInformation {
    font-size: 1.125em;
  }
  #flowWrap .tellMe {
    margin-top: 1em;
  }
  #flowWrap .tellMe li {
    font-size: 1.125em;
  }
  #flowWrap .tellMe li:nth-child(n+2) {
    margin-top: 0.5em;
  }
  #flowWrap .arrowDown {
    margin: 2em 0;
  }
  #flowWrap .arrowDown img {
    width: 30%;
  }
}
/* End of @media screen and (min-width:768px) and (max-width:1023px) */
/**************************************************
 * 767px以下
 **************************************************/
@media print, screen and (max-width: 767px) {
  /****** 5-01.共通 *********************************/
  html {
    overflow-x: hidden;
  }
  .anchorPoint {
    margin-top: -78px;
    padding-top: 78px;
  }
  main .fix,
  main .fixReg,
  main .fixMin {
    width: 96%;
  }
  .spNone {
    display: none !important;
  }
  .spBr {
    display: inline-block !important;
  }
  /****** 5-02.header *******************************/
  #headerWrap {
    display: flex;
    justify-content: space-between;
    width: 96%;
  }
  #headCopy {
    font-size: 1em;
  }
  #logo {
    font-size: 2.5em;
  }
  #headerRtBottom,
  #headerRt nav {
    display: none;
  }
  /****** 5-03.navi *********************************/
  #menu-button {
    background-color: transparent;
    position: fixed;
    top: 12px;
    right: 10px;
    display: grid;
    place-items: center;
    place-content: center;
    width: 52px;
    height: 46px;
    border: none;
    cursor: pointer;
    z-index: 999;
  }
  /* バー */
  .bar,
  .bar::before,
  .bar::after {
    width: 52px;
    height: 6px;
    background-color: #1d1d1d;
    transition: transform 0.3s;
  }
  .bar {
    display: grid;
  }
  .bar::before, .bar::after {
    content: "";
    grid-area: 1/1;
  }
  .bar::before {
    transform: translateY(-18px);
  }
  .bar::after {
    transform: translateY(18px);
  }
  /* オープン時のバー */
  .menu-open .bar {
    background-color: transparent;
  }
  .menu-open .bar::before {
    transform: rotate(45deg);
    background-color: #1d1d1d;
  }
  .menu-open .bar::after {
    transform: rotate(-45deg);
    background-color: #1d1d1d;
  }
  /* メニューラベル */
  .menu-label {
    transform: translateY(2em);
    font-size: 0.75em;
    color: #1d1d1d;
  }
  .menu-open .menu-label {
    color: #1d1d1d;
  }
  /* オーバーレイ */
  #overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    z-index: 997;
    transition: opacity 0.3s;
  }
  /* オープン時のオーバーレイ */
  .menu-open #overlay {
    visibility: visible;
    opacity: 1;
  }
  /* メニュー */
  #menu {
    background-color: transparent;
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 998;
    transform: translateY(-150vh);
    transition: transform 0.3s ease-out;
  }
  #menu ul:before {
    content: "";
    display: block;
    height: 72px;
    width: 100%;
  }
  #menu li a {
    border-bottom: 1px dashed #ccc;
    box-sizing: border-box;
    color: #1d1d1d;
    font-size: 1.5em;
    display: block;
    height: 3em;
    line-height: 3em;
    text-align: center;
  }
  #menu li:last-child a {
    border-bottom: 0;
  }
  #menu li i {
    margin-right: 0.125em;
  }
  /* オープン時のメニュー */
  .menu-open #menu {
    transform: translateX(0);
  }
  /* body */
  body {
    overflow-x: clip;
    /* オープン時のbody */
  }
  body.menu-open {
    overflow: clip;
  }
  /* 横向き */
  /****** 5-04.footer *******************************/
  /****** 5-05.main *********************************/
  /****** 5-06.index ********************************/
  /* 横向き */
  /****** 5-07.sitemap ******************************/
  /****** 5-08.privacy ******************************/
  /****** 5-09.information **************************/
  /****** 5-10.area *********************************/
  /****** 5-11.example ******************************/
  /****** 5-12.flow *********************************/
}
@media print and (orientation: landscape), screen and (max-width: 767px) and (orientation: landscape) {
  #menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3em;
  }
  #menu ul:before {
    content: none;
  }
  #menu ul li {
    width: 50%;
  }
}
@media print, screen and (max-width: 767px) {
  footer {
    margin-bottom: 42px;
  }
  #btnPageTop {
    display: none;
  }
  #floatingMenu {
    background-color: #867565;
    padding: 0.5em 3%;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  }
  #floatingMenu ul {
    display: flex;
    gap: 0.5em;
    justify-content: space-between;
  }
  #floatingMenu ul li {
    width: 48%;
  }
  #floatingMenu ul li a {
    border: 1px solid #fff;
    box-sizing: border-box;
    color: #fff;
    display: block;
    text-align: center;
  }
  #footerCopy {
    font-size: 1.25em;
  }
  #logoFooter {
    font-size: 3em;
  }
  #footInfo {
    margin-top: 1em;
  }
  #footInfo li {
    font-size: 1.125em;
  }
  #footNav li {
    font-size: 1.125em;
  }
  #copyright {
    line-height: 2em;
  }
  footer .fix {
    padding: 1em 0;
    width: 96%;
  }
  #footerWrap #footRt {
    margin-top: 2em;
  }
  #footRtInfo {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-bottom: 0.5em;
  }
  #footRtInfo li {
    font-size: 1.125em;
  }
  #footRtTelNumber li {
    text-align: center;
  }
  #footRtTelNumber li .telNumber {
    font-size: 2.5em;
  }
  #footRtTelNumber i {
    margin-right: 0.125em;
  }
  #footerBtnList {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 1em;
  }
  #footerBtnList a {
    border-radius: 1em;
    font-size: 1.125em;
    line-height: 2em;
    padding: 0 1em;
  }
  #footRt p {
    font-size: 1.125em;
    margin-top: 1em;
    text-align: left;
  }
  main {
    padding: 104px 0 0;
  }
  main.underPage > section {
    padding: 3em 0;
  }
  main .sectionTitle {
    font-size: 2.25em;
  }
  #pageTitle h1 {
    padding: 1em 1em 0.5em;
  }
  #pageTitle h1 .pic {
    margin-bottom: 0.5em;
  }
  #pageTitle h1 .ja {
    font-size: 2.25em;
  }
  #pageTitle h1 .en {
    font-size: 1.25em;
  }
  #secAreaList .att {
    margin: 0 auto;
    width: fit-content;
  }
  #areaListWrap {
    margin-top: 1.5em;
  }
  #areaListWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  #areaListWrap ul li {
    font-size: 1em;
    width: 50%;
  }
  #index .sectionTitle {
    font-size: 2.5em;
    letter-spacing: normal;
    margin-bottom: 0.375em;
  }
  #indexSection1st .fix {
    height: calc(100vh - 120px);
    padding: 1em 0;
    position: relative;
    width: 96%;
  }
  #indexSection1st .fix .item {
    position: absolute;
  }
  #indexSection1st .fix figure.item {
    height: calc(100vh - 154px);
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 1em;
  }
  #indexSection1st .fix figure.item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  #indexSection1st .fix div.item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1em;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  #indexSection1st .fix div.item .contents {
    padding: 1em;
    width: 82vw;
  }
  #indexSection1st .fix h1,
  #indexSection1st .fix h2,
  #indexSection1st .fix h3 {
    text-align: center;
  }
  #indexSection1st .fix h1 {
    font-size: 2em;
  }
  #indexSection1st .fix h2 {
    font-size: 4em;
    margin: 0.375em 0;
  }
  #indexSection1st .fix h3 {
    font-size: 1.25em;
    line-height: 1.75em;
  }
  #indexSection1st .fix p {
    font-size: 1em;
    line-height: 1.5em;
    margin-top: 1em;
  }
  #indexSection2nd {
    padding: 3em 0;
  }
  #indexSection2nd .copy {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  #kaitoriList .indexItem {
    margin: 0 auto;
    padding: 1em 1.5em 1.5em;
    width: 74%;
  }
  #kaitoriList .indexItem:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #kaitoriList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #kaitoriList h3 .title {
    font-size: 1.875em;
    line-height: 1.125em;
    margin: 1em 0;
  }
  #indexSection3rdContents {
    margin: 0 auto;
    padding: 3em 2%;
  }
  #indexSection3rdContentsWrap .indexItem {
    margin: 0 auto;
    padding: 1em;
    width: 74%;
  }
  #indexSection3rdContentsWrap .indexItem:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #indexSection3rdContentsWrap h3 {
    font-size: 1.875em;
    margin-bottom: 0.5em;
  }
  #indexSection3rdFigure {
    background-position-y: 20%;
    height: 60vh;
  }
  #indexSection4th {
    padding: 3em 0;
  }
  #indexSection4th .copy {
    font-size: 1.5em;
    text-align: center;
  }
  #indexPointList .itemPoint {
    margin: 1.5em auto 0;
    padding: 1.5em;
    width: 74%;
  }
  #indexPointList h3 .number {
    border-radius: 0.75em;
    font-size: 3em;
    height: 1.5em;
    line-height: 1.5em;
    width: 1.5em;
  }
  #indexPointList h3 .title {
    font-size: 1.875em;
    margin: 1em 0;
  }
  #indexSection5thContent {
    margin: 0 auto;
    max-width: 960px;
    padding: 3em 2%;
  }
  #indexSection5thContent .sectionTitle {
    letter-spacing: normal;
  }
  #indexSection5thContent dl {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 2em auto 0;
    width: 20em;
  }
  #indexSection5thContent dt,
  #indexSection5thContent dd {
    font-size: 1.25em;
  }
  #indexSection5thContent dt {
    width: 5em;
  }
  #indexSection5thContent dd {
    width: 9em;
  }
  #indexSection5thContent dd i {
    margin-right: 1em;
  }
  #indexSection5thFigure {
    height: 60vh;
  }
  #indexSection6th {
    padding: 3em 0;
  }
  #indexSection6th .copy {
    margin-bottom: 2em;
  }
  #resultsList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  #resultsList li {
    line-height: 1.25em;
    width: 100%;
  }
  #resultsList li:nth-child(even) {
    margin-left: 2%;
  }
  #resultsList li:nth-child(n+3) {
    margin-top: 0.5em;
  }
  #secAreaList {
    padding: 3em 0;
  }
  #stationSection .sectionTitle {
    letter-spacing: normal;
    text-align: left;
  }
  #stationSectionContent {
    max-width: 960px;
    padding: 3em 2%;
  }
  #stationList {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 0;
  }
  #stationList li {
    width: 50%;
  }
  #indexSectionStationFigure {
    height: 60vh;
  }
}
@media print and (orientation: landscape), screen and (max-width: 767px) and (orientation: landscape) {
  #indexSection1st .fix {
    min-height: 485px;
  }
  #indexSection1st .fix figure.item {
    min-height: 453px;
  }
  #indexSection3rdFigure,
  #indexSection5thFigure,
  #indexSectionStationFigure {
    height: 80vh;
  }
}
@media print, screen and (max-width: 767px) {
  #sitemapSection #defaultPage {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap {
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  #sitemapSection .sitemapWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #sitemapSection .sitemapWrap ul li {
    font-size: 1em;
    width: 50%;
  }
  #privacyDiv {
    padding: 3em 0;
  }
  #privacyDiv h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  #infoDiv th,
  #infoDiv td {
    display: block;
    width: auto;
  }
  #infoDiv th {
    padding-bottom: 0;
  }
  #infoDiv td {
    padding-top: 0;
  }
  #areaGuide {
    margin: 0 auto;
    width: 90%;
  }
  .areaListWrap {
    margin-top: 1.5em;
  }
  .areaListWrap .item:nth-of-type(n+2) {
    margin-top: 2em;
  }
  .areaListWrap h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .areaListWrap ul {
    display: flex;
    flex-wrap: wrap;
  }
  .areaListWrap ul li {
    font-size: 1em;
    width: 50%;
  }
  #exampleGuide {
    margin: 0 auto;
    width: 90%;
  }
  #exampleBikeList {
    margin-top: 2em;
  }
  #flowWrap .item div.flowItem {
    padding: 2em;
  }
  #flowWrap .item div.flowItem p {
    font-size: 1.125em;
  }
  #flowWrap .item figure.flowItem {
    overflow: hidden;
  }
  #flowWrap .item figure.flowItem img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  #flowWrap h2 {
    line-height: 3em;
    margin-bottom: 1em;
    text-align: center;
  }
  #flowWrap h2 .number {
    border-radius: 1em;
    display: block;
    font-size: 1.5em;
    height: 2em;
    margin: 0 auto 0.25em;
    text-align: center;
    width: 2em;
  }
  #flowWrap h2 .text {
    font-size: 1.675em;
    white-space: nowrap;
  }
  #flowWrap .flowTel {
    margin-bottom: 1em;
  }
  #flowWrap .flowTel li {
    text-align: center;
  }
  #flowWrap .flowTel li.telNumber {
    font-size: 2.125em;
  }
  #flowWrap .flowTel li.telInformation {
    font-size: 1.125em;
  }
  #flowWrap .tellMe {
    margin-top: 1em;
  }
  #flowWrap .tellMe li {
    font-size: 1.125em;
  }
  #flowWrap .tellMe li:nth-child(n+2) {
    margin-top: 0.5em;
  }
  #flowWrap .arrowDown {
    margin: 1em 0;
  }
  #flowWrap .arrowDown img {
    width: 32%;
  }
}
/* End of @media print, screen and (max-width:767px) */
body {
  background: cornsilk;
}

#headerLt {
  width: fit-content;
}

#headCopySub {
  text-align: right;
  letter-spacing: 0.375em;
  margin-top: 0.125em;
}

#footLt {
  width: fit-content;
}

#footerCopySub {
  text-align: right;
  letter-spacing: 0.375em;
  margin-top: 0.125em;
}

#footerLogo {
  width: fit-content;
  display: inline-block;
}

#indexSection3rdContentsWrap .indexItem {
  background: #fff;
}

#flowWrap .item div.flowItem {
  background: white;
}

#flowWrap .item figure.flowItem img {
  height: 100%;
  object-fit: cover;
}

.areaListWrap .item {
  background: #fff;
}/*# sourceMappingURL=style.css.map */