@charset "UTF-8";
/* ----------------------------------------
　　リセットCSS
---------------------------------------- */
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 {
  outline: 0;
  background: transparent;
  border: 0;
  font-size: 100%;
  font-style: normal;
  list-style-type: none;
  vertical-align: baseline;
  padding: 0;
  margin: 0;
}

body {
  line-height: 1;
}

body figure {
  margin: 0;
}

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

ul {
  list-style: none;
}

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

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

main {
  display: block;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

* {
  box-sizing: border-box;
}

/* ----------------------------------------
　　基本設定
---------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  word-wrap: break-word;
  background-color: #FFF;
  color: #444;
  font-family: sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "pkna";
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    letter-spacing: 0;
  }
}

a {
  transition: 0.4s;
  display: block;
  color: #444;
}
a.around-link {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

span {
  display: inline-block;
}

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

em {
  font-weight: bold;
}

table {
  width: 100%;
  text-align: left;
}

@media screen and (min-width: 961px) {
  .pc-non {
    display: none;
  }
}
@media screen and (min-width: 681px) {
  .pc-tb-non {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .tb-sp-non {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .sp-non {
    display: none;
  }
}
span.anker {
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}

/* ----------------------------------------
　　アニメーション
---------------------------------------- */
header, main {
  -webkit-animation: fadeIn 1.2s ease 0s 1 normal;
  animation: fadeIn 1.2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.btn-animation {
  position: relative;
}
.btn-animation::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  animation: btn-animation 2s ease-in-out alternate infinite;
  background: linear-gradient(90deg, #8bc8c8, #d9ca92);
  background-size: 500% 500%;
  margin: -2px;
}

@keyframes btn-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.grecaptcha-badge {
  z-index: 100;
  margin-bottom: 60px;
}

/* ----------------------------------------
　　ヘッダー
---------------------------------------- */
.sptop-navi__list {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 60px;
  width: 100%;
  max-width: 60px;
  margin-left: auto;
}
@media screen and (min-width: 961px) {
  .sptop-navi__list {
    display: none;
  }
}

.sptop-navi__item a {
  background-color: #138AD3;
  height: 60px;
  color: #FFF;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  padding-top: 10px;
}
.sptop-navi__item a img {
  display: block;
  max-width: 22px;
  margin: 0 auto 4px;
}

#header {
  position: fixed;
  z-index: 240;
  background-color: #FFF;
  box-shadow: 1px 1px 8px rgba(28, 86, 130, 0.16);
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  #header {
    top: 12px;
    right: 0;
    left: 0;
    width: calc(100% - 32px);
    max-width: 1360px;
    border-radius: 12px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 960px) {
  #header {
    display: flex;
    align-items: center;
    width: calc(100% - 120px);
    height: 60px;
    padding-left: 12px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 240;
}

.header__logo {
  transition: 0.4s;
  position: relative;
  z-index: 300;
  max-width: 200px;
}
@media screen and (max-width: 960px) {
  .header__logo {
    width: calc(100% - 12px);
    max-width: 180px;
  }
}
.header__logo a {
  padding: 8px 0;
}
@media screen and (min-width: 681px) {
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__container {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .header__container {
    display: none;
  }
}

.header__nav {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__nav-item {
  position: relative;
}
.header__nav-item a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 32px 24px;
  padding-left: 40px;
}
.header__nav-item a img {
  display: inline-block;
  position: absolute;
  left: 12px;
  max-width: 20px;
  margin-top: 2px;
  margin-right: 8px;
}
.header__nav-item a::after {
  content: "";
  transition: 0.3s;
  display: inline-block;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: left top;
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: calc(100% - 8px);
  height: 2px;
  background-color: #138AD3;
}
@media screen and (min-width: 681px) {
  .header__nav-item a:hover, .header__nav-item a:focus {
    opacity: 1;
  }
  .header__nav-item a:hover::after, .header__nav-item a:focus::after {
    transform: translateX(-50%) scale(1, 1);
  }
}
.header__nav-item a.header-nav__link::after {
  display: none;
}

.header__nav-contact {
  margin-left: 16px;
}
.header__nav-contact a {
  position: relative;
  background-color: #1B70AF;
  border-radius: 0 12px 12px 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 32px 24px;
  padding-left: 56px;
}
.header__nav-contact a img {
  display: inline-block;
  position: absolute;
  left: 26px;
  max-width: 20px;
  margin-top: 2px;
  margin-right: 8px;
}
@media screen and (min-width: 681px) {
  .header__nav-contact a:hover {
    background-color: #138AD3;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  }
}

.header-nav__under {
  transition: 0.2s;
  transform: scaleY(0);
  transform-origin: center top;
  position: absolute;
  top: 72px;
  left: 0;
  width: 280px;
  color: #FFF;
}

.header__nav-item:hover .header-nav__under {
  transform: scaleY(1);
  display: block;
}
.header__nav-item:hover .header-nav__under li {
  transition: 0.2s;
  position: relative;
  width: 280px;
  height: auto;
  font-weight: normal;
  background-color: #1B70AF;
}
.header__nav-item:hover .header-nav__under li a {
  position: relative;
  width: 280px;
  background-color: #1B70AF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 8px 16px;
}
.header__nav-item:hover .header-nav__under li a:hover {
  background-color: #138AD3;
}
.header__nav-item:hover .header-nav__under li a::after {
  display: none;
}

@media screen and (min-width: 961px) {
  #header.scrollfixed .header__logo {
    max-width: 180px;
  }
  #header.scrollfixed .header__nav-item a {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  #header.scrollfixed .header__nav-item a::after {
    bottom: 16px;
  }
  #header.scrollfixed .header__nav-item li a {
    padding: 8px 16px;
  }
  #header.scrollfixed .header__nav-contact a {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
@media screen and (min-width: 961px) {
  .hamburger-btn {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .hamburger-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #1B70AF;
  }
}
.hamburger-btn * {
  transition: 0.2s;
}

.hamburger-btn__inner {
  position: relative;
  width: 40%;
  height: 32%;
  border: none;
  margin-bottom: 18%;
  transform: translateY(6px);
}
.hamburger-btn__inner span {
  transform: translateY(0) rotate(0);
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
}
.hamburger-btn__inner span::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #FFF;
}
.hamburger-btn__inner span:nth-of-type(1) {
  top: 0;
}
.hamburger-btn__inner span:nth-of-type(2) {
  top: calc(50% - 1px);
  right: 0;
}
.hamburger-btn__inner span:nth-of-type(3) {
  bottom: 0;
}

.hamburger-btn__text {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: #FFF;
}

.header.active .hamburger-btn span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header.active .hamburger-btn span:nth-of-type(2) {
  width: 0;
}
.header.active .hamburger-btn span:nth-of-type(3) {
  width: 100%;
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header.active .sub-nav {
  opacity: 1;
  pointer-events: auto;
}
.header.active .sub-nav::before {
  content: "";
}

.sub-nav {
  transition: 0.4s;
}
@media screen and (min-width: 961px) {
  .sub-nav {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .sub-nav {
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    position: fixed;
    z-index: 180;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    padding: 120px 20px 8vh;
    padding-top: calc(6vh + 60px);
  }
}

.sub-nav__nav * {
  transition: 0.2s;
}

.sub-nav__list {
  max-width: 400px;
  margin: 0 auto;
}

.sub-nav__item {
  cursor: pointer;
  position: relative;
}
.sub-nav__item a, .sub-nav__item label {
  background: url(../images/icon/icon_arrow0101.svg) no-repeat right 12px center;
  background-size: 16px auto;
  border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  font-weight: bold;
  padding: 3.2vh 36px 3.2vh 12px;
}
.sub-nav__item a img, .sub-nav__item label img {
  display: inline-block;
  position: relative;
  top: -2px;
  max-width: 24px;
  margin-right: 12px;
}
.sub-nav__item li a {
  background-color: #F6F6F6;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 2vh 12px;
}

.sub-nav__contact {
  padding: 2px;
  margin-top: 2vh;
}
.sub-nav__contact a {
  position: relative;
  z-index: 4;
  background-color: #138AD3;
  border-radius: 5px;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 4vh 16px;
}
.sub-nav__contact a img {
  display: inline-block;
  position: relative;
  top: -2px;
  max-width: 24px;
  margin-right: 12px;
}

.sub-nav__toggle {
  display: none;
}

.sub-nav__btn,
.sub-nav__under {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sub-nav__btn {
  display: block;
}

.sub-nav__btn::after,
.sub-nav__btn::before {
  content: "";
  position: absolute;
  top: 3.6vh;
  right: 12px;
  width: 2px;
  height: 20px;
  background-color: #DFE4EA;
}

.sub-nav__btn::after {
  transform: rotate(90deg);
}

.sub-nav__under {
  overflow: hidden;
  max-height: 0;
}

.sub-nav__toggle:checked + .sub-nav__btn + .sub-nav__under {
  max-height: 500px;
}

.sub-nav__toggle:checked + .sub-nav__btn::before {
  transform: rotate(90deg);
}

/* ----------------------------------------
　　見出し・リンク
---------------------------------------- */
.main_title01 {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .main_title01 {
    font-size: 2.2rem;
  }
}
.main_title01 span {
  display: block;
  color: #1B70AF;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.main_title01 span::before, .main_title01 span::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon/icon_fukidashi0101.svg) no-repeat center;
  background-size: 100% auto;
  margin-bottom: -2px;
}
.main_title01 span::before {
  margin-right: 4px;
}
.main_title01 span::after {
  background-image: url(../images/icon/icon_fukidashi0102.svg);
  margin-left: 4px;
}
.main_title01 strong {
  color: #138AD3;
}

.main_title02 {
  font-size: 3.2rem;
  font-weight: normal;
  letter-spacing: 0.16em;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .main_title02 {
    font-size: 2.4rem;
  }
}
.main_title02 span {
  display: block;
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
@media screen and (max-width: 680px) {
  .main_title02 span {
    font-size: 1.8rem;
  }
}
.main_title02 span::first-letter {
  color: #138AD3;
}
.main_title02 span::before, .main_title02 span::after {
  content: "";
  display: inline-block;
}
.main_title02 span::before {
  position: absolute;
  top: -8px;
  left: -16px;
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon_fukidashi0201.svg) no-repeat center;
  background-size: 100% auto;
}
.main_title02 span::after {
  position: relative;
  top: -8px;
  left: 8px;
  width: 124px;
  height: 1px;
  background-color: #444;
}

.main_title03 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .main_title03 {
    font-size: 2.4rem;
  }
}
.main_title03::first-letter {
  color: #138AD3;
}

.main_title04 {
  text-align: center;
  margin-bottom: 24px;
}
.main_title04 span {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.main_title04 span::before, .main_title04 span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon/icon_fukidashi0101.svg) no-repeat center;
  background-size: 100% auto;
  margin-bottom: -2px;
}
.main_title04 span::before {
  margin-right: 8px;
}
.main_title04 span::after {
  background-image: url(../images/icon/icon_fukidashi0102.svg);
  margin-left: 8px;
}

.main_link01 {
  max-width: 400px;
  margin: 40px auto 0;
}
@media screen and (max-width: 680px) {
  .main_link01 {
    margin-top: 32px;
  }
}
.main_link01 a {
  background-color: #1B70AF;
  border-radius: 6px;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 16px;
}
@media screen and (min-width: 681px) {
  .main_link01 a:hover {
    background-color: #138AD3;
  }
}

.category__icon {
  position: relative;
  z-index: 100;
  font-size: 0;
  text-align: left;
  text-indent: -5px;
  margin-bottom: 8px;
}
@media screen and (max-width: 680px) {
  .category__icon {
    text-indent: 0;
  }
}
.category__icon span {
  display: none;
}
.category__icon a {
  display: inline;
  border-radius: 3px;
  color: #1B70AF;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: underline;
  text-indent: 0;
  margin: 0 4px 4px 0;
}
@media screen and (max-width: 680px) {
  .category__icon a {
    font-size: 1.4rem;
    margin: 2px;
  }
}
.category__icon a:hover {
  opacity: 0.6;
}

.line01 {
  border-bottom: 1px solid #444;
}

.background01 {
  background-color: #F6F6F6;
}

.background02 {
  background-color: #DFE4EA;
}

/* ----------------------------------------
　　コンテンツ
---------------------------------------- */
.l_inner {
  position: relative;
  z-index: 4;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .l_inner {
    max-width: 640px;
    padding: 0 24px;
  }
}

/* ----------------------------------------
　　サイドバー
---------------------------------------- */
.sidebar {
  max-width: 320px;
  padding: 40px 32px;
  margin: 0 auto;
}

/* ----------------------------------------
　　コンセプト
---------------------------------------- */
.concept {
  padding: 64px 0;
}

.concept_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.concept__main-info {
  width: 54%;
  padding: 0 24px;
}
@media screen and (max-width: 680px) {
  .concept__main-info {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}

.concept__main-text {
  font-size: 1.6rem;
  line-height: 2;
}

.concept__main-image {
  width: 46%;
  padding: 0 24px;
}
@media screen and (max-width: 680px) {
  .concept__main-image {
    width: 100%;
    max-width: 320px;
    padding: 0;
    margin: 0 auto 24px;
  }
}

/* ----------------------------------------
　　施工事例
---------------------------------------- */
.works {
  padding: 64px 0;
}

.works__main-text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 56px;
}

.works__main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -40px 56px;
}
@media screen and (max-width: 680px) {
  .works__main-image {
    flex-wrap: wrap;
    margin: 0 -24px 40px;
  }
}
.works__main-image img {
  display: inline-block;
  width: 25%;
}
@media screen and (max-width: 680px) {
  .works__main-image img {
    width: 50%;
  }
}

.works__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 681px) {
  .works__list {
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 680px) {
  .works__list {
    margin: 0 -12px;
  }
}

.works__item {
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  background-color: #FFF;
  border: 2px solid #FFF;
  border-radius: 8px;
}
@media screen and (min-width: 961px) {
  .works__item {
    width: calc(33.3333333333% - 16px);
    margin-right: 24px;
    margin-bottom: 56px;
  }
  .works__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .works__item {
    width: calc(50% - 16px);
    margin-right: 24px;
    margin-bottom: 40px;
  }
  .works__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 680px) {
  .works__item {
    display: block;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 681px) {
  .works__item:hover, .works__item:focus-within {
    border-color: #138AD3;
  }
  .works__item:hover .works__item-image img, .works__item:focus-within .works__item-image img {
    opacity: 0.6;
    width: 104%;
    height: 104%;
  }
}

.works__item-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 680px) {
  .works__item-title {
    width: auto;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
.works__item-title::before {
  content: "●";
  display: inline-block;
  color: #138AD3;
  font-size: 1.6rem;
  margin-right: 6px;
}

.works__item-image {
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #1C5682;
  border: none;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 681px) {
  .works__item-image {
    padding-top: 60%;
  }
}
@media screen and (max-width: 680px) {
  .works__item-image {
    width: 100%;
    border-radius: 8px 8px 0 0;
    padding-top: 62%;
  }
}
.works__item-image img {
  transition: 0.4s;
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.works__item-info {
  transition: 0.4s;
  width: 100%;
  border: none;
  border-radius: 0 0 8px 8px;
  background-color: #FFF;
  padding: 20px;
}
@media screen and (max-width: 680px) {
  .works__item-info {
    width: 100%;
    border-radius: 0 0 8px 8px;
    padding: 18px 16px;
  }
}

.works__item-place {
  display: inline-block;
  background-color: #138AD3;
  border-radius: 3px;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 4px 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 680px) {
  .works__item-place {
    font-size: 1.5rem;
    padding: 4px 8px;
  }
}

.works__item-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .works__item-text {
    margin-bottom: 20px;
  }
}

.works__item-day {
  font-size: 1.2rem;
  text-align: right;
  margin-bottom: -8px;
}

/* ----------------------------------------
　　レンタル
---------------------------------------- */
.rental {
  padding: 64px 0;
}

.rental__main-text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 32px;
}

.rental__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (min-width: 681px) {
  .rental__list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .rental__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .rental__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.rental__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background-color: #F6F6F6;
  border: 1px solid rgba(28, 86, 130, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(28, 86, 130, 0.06);
}
@media screen and (max-width: 680px) {
  .rental__item {
    border-radius: 8px;
  }
}

.rental__item-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #FFF;
  border-radius: 12px 12px 0 0;
  padding: 12px;
}
@media screen and (max-width: 680px) {
  .rental__item-image {
    border-radius: 8px 8px 0 0;
    padding: 8px;
  }
}
.rental__item-image img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.rental__item-info {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 16px 18px 18px;
}
@media screen and (max-width: 680px) {
  .rental__item-info {
    min-height: 64px;
    padding: 12px;
  }
}

.rental__item-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 24px;
}
@media screen and (max-width: 680px) {
  .rental__item-title {
    font-size: 1.4rem;
    font-weight: normal;
    padding-left: 20px;
  }
}
.rental__item-title::before {
  content: "●";
  display: inline-block;
  position: absolute;
  left: 0;
  color: #138AD3;
  font-size: 1.6rem;
  margin-right: 6px;
}
@media screen and (max-width: 680px) {
  .rental__item-title::before {
    font-size: 1.2rem;
    margin-top: 2px;
    margin-right: 0;
  }
}

/* ----------------------------------------
　　お知らせ＆トピックス
---------------------------------------- */
.topics {
  padding: 64px 0;
}
.topics .main_title03 {
  text-align: center;
}

.topics_inner {
  max-width: 960px;
}

.topics__item {
  display: flex;
  flex-wrap: wrap;
  background-color: #FFF;
  border-radius: 6px;
}
@media screen and (max-width: 680px) {
  .topics__item {
    padding: 0 12px;
  }
}
.topics__item:not(:last-child) {
  margin-bottom: 12px;
}

.topics__item-day {
  width: 20%;
  color: #888;
  font-size: 1.5rem;
  text-align: center;
  padding: 24px 0 24px 24px;
}
@media screen and (max-width: 680px) {
  .topics__item-day {
    width: 100%;
    border-bottom: 1px dashed #CCC;
    text-align: left;
    padding: 12px 8px 4px;
  }
}

.topics__item-title {
  width: 80%;
}
@media screen and (max-width: 680px) {
  .topics__item-title {
    width: 100%;
  }
}
.topics__item-title a {
  background: url(../images/icon/icon_arrow0101.svg) no-repeat right 12px top 50%;
  background-size: 32px auto;
  border-radius: 0 6px 6px 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  padding: 24px;
}
@media screen and (max-width: 680px) {
  .topics__item-title a {
    background-size: 20px auto;
    background-position: right 0 top 46%;
    padding: 12px 8px 16px;
  }
}
@media screen and (min-width: 681px) {
  .topics__item-title a:hover {
    background-color: #138AD3;
    color: #FFF;
  }
}

/* ----------------------------------------
　　フッター
---------------------------------------- */
.footer {
  background-color: #F2F2F2;
  padding: 64px 0;
}
@media screen and (max-width: 680px) {
  .footer {
    padding: 56px 0;
  }
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1040px;
}

.footer__main-info {
  width: 54%;
}
@media screen and (max-width: 680px) {
  .footer__main-info {
    width: 100%;
    margin-bottom: 32px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  max-width: 240px;
  margin-bottom: 32px;
}
@media screen and (max-width: 680px) {
  .footer__logo {
    max-width: 200px;
    margin: 0 auto 24px;
  }
}
@media screen and (min-width: 681px) {
  .footer__logo a:hover {
    transform: scale(1.06);
  }
}

.footer__main-company {
  width: 100%;
}
.footer__main-company th {
  width: 20%;
  border-bottom: 1px solid #138AD3;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 12px 12px 2px;
}
@media screen and (max-width: 680px) {
  .footer__main-company th {
    padding: 12px 0 2px;
  }
}
.footer__main-company td {
  border-bottom: 1px solid #DDD;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 12px 12px 2px;
}
@media screen and (max-width: 680px) {
  .footer__main-company td {
    padding: 12px 0 2px;
  }
}
.footer__main-company .footer__company-link-row td {
  border-bottom: none;
  text-align: right;
  padding-top: 18px;
  padding-right: 0;
}
@media screen and (max-width: 680px) {
  .footer__main-company .footer__company-link-row td {
    text-align: center;
    padding-top: 20px;
  }
}
.footer__main-company .footer__company-link {
  display: inline-block;
  min-width: 240px;
  background-color: #1B70AF;
  border: 2px solid #1B70AF;
  border-radius: 4px;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 12px 24px;
}
@media screen and (max-width: 680px) {
  .footer__main-company .footer__company-link {
    min-width: 0;
    width: 100%;
    max-width: 320px;
  }
}
@media screen and (min-width: 681px) {
  .footer__main-company .footer__company-link:hover, .footer__main-company .footer__company-link:focus {
    background-color: #FFF;
    color: #1B70AF;
  }
}

.footer__main-access {
  width: 42%;
}
@media screen and (max-width: 680px) {
  .footer__main-access {
    width: 100%;
  }
}
.footer__main-access .main_title04 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 4px;
}
@media screen and (max-width: 680px) {
  .footer__main-access .main_title04 {
    text-align: center;
    margin-bottom: 8px;
  }
}
.footer__main-access iframe {
  display: inline-block;
  width: 100%;
  height: 240px;
}

/* ----------------------------------------
　　下部コピー文
---------------------------------------- */
.footer__bottom {
  background-color: #1C5682;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 12px 24px;
}

.footer__copy {
  font-style: normal;
}

/* ----------------------------------------
   ページトップ
---------------------------------------- */
#page-top a {
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #1B70AF;
  border-radius: 4px;
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 680px) {
  #page-top a {
    width: 56px;
    height: 56px;
  }
}
@media screen and (min-width: 681px) {
  #page-top a:hover {
    opacity: 0.6;
  }
}

#page-top {
  opacity: 0;
  transform: translateY(100px);
  position: fixed;
  z-index: 10;
  right: 6px;
  bottom: 6px;
}

#page-top.UpMove {
  animation: UpAnime 0.4s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.4s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* ----------------------------------------
　　コンタクトフォーム
---------------------------------------- */
#cf7-area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#cf7-area * {
  transition: 0.4s;
}

.cf7-item {
  border-bottom: 1px dashed #CCC;
}

.cf7-q {
  width: 36%;
  color: #555;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: middle;
  padding: 8px 12px 12px 0;
}
@media screen and (max-width: 680px) {
  .cf7-q {
    display: block;
    width: 100%;
    padding: 12px 0 0;
  }
}
.cf7-q span {
  font-size: 0.8em;
  font-weight: normal;
}
.cf7-q label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cf7-a {
  width: 64%;
  color: #555;
  vertical-align: middle;
  padding: 8px 0 12px;
}
@media screen and (max-width: 680px) {
  .cf7-a {
    display: block;
    width: 100%;
    padding: 4px 0 12px;
  }
}
.cf7-a span {
  display: block;
  font-size: 1.5rem;
  margin-top: 4px;
}
.cf7-a.column2 p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cf7-a.column2 p input[type=text] {
  width: calc(50% - 88px);
}
@media screen and (max-width: 680px) {
  .cf7-a.column2 p input[type=text] {
    width: calc(50% - 96px);
  }
}
.cf7-a.column2 p span.text {
  display: block;
  width: 88px;
  font-size: 1.5rem;
  text-align: right;
  padding-right: 8px;
}
@media screen and (max-width: 680px) {
  .cf7-a.column2 p span.text {
    width: 96px;
    font-size: 1.4rem;
    padding-right: 8px;
  }
}

#cf7-area label {
  font-weight: bold;
}
#cf7-area input,
#cf7-area textarea {
  display: block;
  width: 100%;
  background-color: #FFF;
  border: 1px solid #AAA;
  border-radius: 3px;
  font-size: 1.8rem;
  padding: 8px 12px;
}
#cf7-area input::placeholder,
#cf7-area textarea::placeholder {
  color: #AAA;
}
#cf7-area textarea {
  height: 160px;
}
#cf7-area input:focus,
#cf7-area textarea:focus {
  outline: 0;
  border: 1px solid #444;
}

span.wpcf7-list-item {
  position: relative;
  margin-left: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  color: #111;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  width: 22px;
  height: 22px;
  background-color: #FFF;
  border: 1px solid #AAA;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 8px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../images/icon/icon_check0101.svg) no-repeat center;
  background-size: contain;
}

.cf7-accept-check {
  text-align: center;
  margin-bottom: 32px;
}

p.privacy__link {
  text-align: center;
  margin: 40px auto 24px;
}
p.privacy__link a {
  display: inline-block;
  background-color: #EFEFEF;
  border-radius: 3px;
  font-size: 1.6rem;
  padding: 12px 24px;
}
@media screen and (min-width: 681px) {
  p.privacy__link a:hover, p.privacy__link a:focus {
    background-color: #138AD3;
    color: #FFF;
  }
}

.cf7-submit input {
  transition: 0.4s;
  display: block;
  width: 100%;
  max-width: 400px;
  background-color: #1B70AF;
  border-radius: 5px;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 681px) {
  .cf7-submit input:hover, .cf7-submit input:focus {
    background-color: #138AD3;
  }
}

.cf7-any,
.cf7-req {
  display: block;
  width: 56px;
  border-radius: 2px;
  color: #FFF;
  font-size: 0.8em;
  text-align: center;
  padding: 2px;
  margin: 4px 12px 4px 0;
}
@media screen and (max-width: 680px) {
  .cf7-any,
  .cf7-req {
    padding: 4px 8px;
    margin: 0 6px 6px 0;
  }
}

.cf7-any {
  background-color: #AAA;
}

.cf7-req {
  background-color: #138AD3;
}

.wpcf7-response-output {
  display: none;
}

.cf7-popup-open {
  overflow: hidden;
}

.cf7-result-popup {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.cf7-result-popup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cf7-result-popup.is-active .cf7-result-popup__dialog {
  animation: cf7PopupBounce 0.46s cubic-bezier(0.2, 1.4, 0.42, 1) both;
}

.cf7-result-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 86, 130, 0.58);
}

.cf7-result-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background-color: #FFF;
  border: 3px solid #1B70AF;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.28);
  text-align: center;
  padding: 40px 32px 32px;
}
@media screen and (max-width: 680px) {
  .cf7-result-popup__dialog {
    padding: 36px 24px 28px;
  }
}

.cf7-result-popup.is-error .cf7-result-popup__dialog {
  border-color: #D64545;
}

.cf7-result-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: #777;
  font-family: sans-serif;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 681px) {
  .cf7-result-popup__close:hover, .cf7-result-popup__close:focus {
    color: #1B70AF;
  }
}

.cf7-result-popup__title {
  color: #1B70AF;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 12px !important;
}
@media screen and (max-width: 680px) {
  .cf7-result-popup__title {
    font-size: 2rem;
  }
}

.cf7-result-popup.is-error .cf7-result-popup__title {
  color: #D64545;
}

.cf7-result-popup__message {
  color: #555;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 24px !important;
}

.cf7-result-popup__button {
  display: block;
  width: 100%;
  max-width: 240px;
  background-color: #1B70AF;
  border: 2px solid #1B70AF;
  border-radius: 240px;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 12px;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (min-width: 681px) {
  .cf7-result-popup__button:hover, .cf7-result-popup__button:focus {
    background-color: #FFF;
    color: #1B70AF;
  }
}

@keyframes cf7PopupBounce {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.86);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  78% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ----------------------------------------
   スタイルシート終わり
---------------------------------------- */
