@charset "UTF-8";
/*
Theme Name:AE HOME
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1em;
  min-width: 1200px;
  box-sizing: border-box;
  background-color: #fff;
}

@media screen and (max-width: 600px) {
  header {
    position: absolute;
    top: 0;
    min-width: auto;
    padding: 0 0 0 3vw;
    align-items: flex-start;
    z-index: 999;
  }
}

header h1 {
  margin-right: 1em;
}

@media screen and (max-width: 600px) {
  header h1 {
    margin-right: 0.5em;
  }
}

header h1 a {
  display: block;
  max-width: 500px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  header h1 a {
    width: 100%;
    margin: 0.5em 0 0;
  }
}

header h1 a img {
  width: 100%;
}

header .description {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  header .description {
    font-size: 10px;
  }
}

header .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header .right .info {
  display: flex;
  align-items: center;
}

header .right .info .tel {
  font-size: 26px;
  font-weight: 600;
  margin-right: 1em;
}

header .right .info .tel:before {
  content: "Tel.";
  font-size: 20px;
  font-weight: 500;
}

header .right .info .time {
  font-size: 16px;
  font-weight: 500;
  margin-right: 1em;
}

header .right .info .contact {
  display: block;
  width: 180px;
  transform: translateY(0.5em);
}

header .right .info .contact img {
  width: 100%;
}

header .right #menu {
  display: none;
}

header .right #menu:checked~.btn .icon {
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0);
}

header .right #menu:checked~.btn .icon::before,
header .right #menu:checked~.btn .icon::after {
  transition: 0.3s;
}

header .right #menu:checked~.btn .icon::before {
  top: 0;
  transform: rotate(45deg);
}

header .right #menu:checked~.btn .icon::after {
  bottom: 0;
  transform: rotate(135deg);
}

header .right #menu:checked~nav {
  top: 0;
}

header .right .btn {
  display: none;
  width: 15vw;
  height: 15vw;
  background-color: #ddd;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

@media screen and (max-width: 600px) {
  header .right .btn {
    display: flex;
  }
}

header .right .btn .icon {
  position: relative;
  width: 50%;
  height: 4px;
  background-color: #ff8053;
  border-radius: 50px;
}

header .right .btn .icon:before,
header .right .btn .icon:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ff8053;
  border-radius: 50px;
}

header .right .btn .icon:before {
  top: 10px;
}

header .right .btn .icon:after {
  bottom: 10px;
}

header .right nav {
  display: flex;
  justify-content: space-between;
  padding: 0 1em;
  margin-top: 1em;
  color: #ff8053;
  max-width: 920px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  header .right nav {
    position: absolute;
    z-index: 30;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    padding: 5em 1em 2em;
    margin: 0;
    top: -200vw;
    transition: 0.3s;
  }
}

header .right nav a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin-right: 0.5em;
}

header .right nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff8053;
  transition: 0.2s;
}

header .right nav a:hover::after {
  width: 100%;
}

header .right nav a.icon.icon01 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon01:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon01:before {
    padding-right: 1em;
  }
}

header .right nav a.icon.icon02 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon02:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon02:before {
    padding-right: 1em;
  }
}

header .right nav a.icon.icon03 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon03:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/03.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon03:before {
    padding-right: 1em;
  }
}

header .right nav a.icon.icon04 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon04:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/04.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  transform: translateY(3px);
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon04:before {
    padding-right: 1em;
  }
}

header .right nav a.icon.icon05 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon05:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/05.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon05:before {
    padding-right: 1em;
  }
}

header .right nav a.icon.icon06 {
  display: flex;
  align-items: baseline;
}

header .right nav a.icon.icon06:before {
  content: "";
  display: block;
  padding-right: 0.5em;
  background-image: url(./images/icon/06.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 600px) {
  header .right nav a.icon.icon06:before {
    padding-right: 1em;
  }
}

@media screen and (max-width: 600px) {
  header .right nav a {
    display: block;
    padding: 1em;
    border-top: 1px solid #ff8053;
  }

  header .right nav a:last-child {
    border-bottom: 1px solid #ff8053;
  }
}

.sidebar {
  position: fixed;
  z-index: 10;
  right: 0;
  display: flex;
  flex-direction: column;
  top: 55%;
  transform: translateY(-50%);
  width: 38px;
}

.sidebar a {
  display: block;
  margin: 0;
}

.sidebar a img {
  vertical-align: middle;
  width: 100%;
}

section[id^=front-] {
  min-width: 1200px;
  margin-bottom: 10em;
}

@media screen and (max-width: 600px) {
  section[id^=front-] {
    min-width: auto;
  }
}

section[id^=front-] .inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  section[id^=front-] .inner {
    width: 100%;
  }
}

section[id^=front-] .inner .btn {
  position: relative;
  display: block;
  width: 300px;
  margin: 3em auto 0;
  padding: 0.5em 0;
  font-size: 18px;
  font-weight: 700;
  font-weight: 500;
  text-align: center;
  background-color: #ff8053;
  border-radius: 50px;
  color: #fff;
}

section[id^=front-] .inner .btn:before {
  position: absolute;
  content: "";
  display: block;
  width: 0.35em;
  height: 0.35em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 1.5em;
}

#front-top,
#front-top-sp {
  position: relative;
}

#front-top .adsense,
#front-top .title,
#front-top-sp .adsense,
#front-top-sp .title {
  position: absolute;
  z-index: 10;
}

@media screen and (max-width: 600px) {

  #front-top .adsense img,
  #front-top .title img,
  #front-top-sp .adsense img,
  #front-top-sp .title img {
    width: 100%;
  }
}

#front-top .title,
#front-top-sp .title {
  bottom: 4em;
  left: 5em;
}

@media screen and (max-width: 600px) {

  #front-top .title,
  #front-top-sp .title {
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6em;
  }
}

#front-top .adsense,
#front-top-sp .adsense {
  bottom: 20em;
  left: 3em;
}

@media screen and (max-width: 600px) {

  #front-top .adsense,
  #front-top-sp .adsense {
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}

#front-top .splide__track .splide__list .splide__slide,
#front-top-sp .splide__track .splide__list .splide__slide {
  width: 100%;
  height: 50vw;
  min-height: 600px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {

  #front-top .splide__track .splide__list .splide__slide,
  #front-top-sp .splide__track .splide__list .splide__slide {
    width: auto;
    height: 200vw;
  }
}

#front-top .splide__track .splide__list .splide__slide img,
#front-top-sp .splide__track .splide__list .splide__slide img {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}

@media screen and (max-width: 600px) {

  #front-top .splide__track .splide__list .splide__slide img,
  #front-top-sp .splide__track .splide__list .splide__slide img {
    width: auto;
    height: 200vw;
  }
}

#front-top .splide__pagination.splide__pagination--ltr,
#front-top-sp .splide__pagination.splide__pagination--ltr {
  bottom: -2em;
}

#front-top .splide__pagination.splide__pagination--ltr li,
#front-top-sp .splide__pagination.splide__pagination--ltr li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0 0.5em;
  pointer-events: auto;
}

#front-top .splide__pagination__page.is-active,
#front-top-sp .splide__pagination__page.is-active {
  background: #ff8053;
  transform: scale(1.4);
  z-index: 1;
}

#front-top {
  padding-top: 123px;
}

#front-topics .wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #front-topics .wrap {
    flex-direction: column;
    align-items: center;
  }
}

#front-topics .wrap a {
  width: 100%;
}

#front-topics .wrap article {
  position: relative;
  width: 290px;
}

@media screen and (max-width: 600px) {
  #front-topics .wrap article {
    width: 80%;
    margin: 0 auto 3em;
  }
}

#front-topics .wrap article .img {
  width: 290px;
  height: 290px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #front-topics .wrap article .img {
    width: 80vw;
    height: 80vw;
  }
}

#front-topics .wrap article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#front-topics .wrap article .title {
  font-size: 18px;
  padding: 0.7em 0;
}

@media screen and (max-width: 600px) {
  #front-topics .wrap article .title {
    text-align: center;
  }
}

#front-topics .wrap article .title:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin-top: 0.5em;
  background-color: #ff8053;
}

@media screen and (max-width: 600px) {
  #front-topics .wrap article .title:after {
    margin: 0.5em auto 0 auto;
    height: 3px;
  }
}

#front-topics .wrap article .description {
  font-size: 16px;
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#front-works .wrap {
  display: flex;
  justify-content: space-between;
  counter-reset: number;
}

@media screen and (max-width: 600px) {
  #front-works .wrap {
    flex-direction: column;
    align-items: center;
  }
}

#front-works .wrap article {
  position: relative;
  width: 290px;
}

@media screen and (max-width: 600px) {
  #front-works .wrap article {
    width: 80vw;
    margin-bottom: 5em;
  }
}

#front-works .wrap article .img {
  width: 290px;
  height: 290px;
  overflow: hidden;
  border-radius: 80px 5px 5px 5px;
}

@media screen and (max-width: 600px) {
  #front-works .wrap article .img {
    width: 80vw;
    height: 60vw;
  }
}

#front-works .wrap article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#front-works .wrap article .title {
  font-size: 18px;
  padding: 0.7em 0;
}

@media screen and (max-width: 600px) {
  #front-works .wrap article .title {
    text-align: center;
  }
}

#front-works .wrap article .title:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin-top: 0.5em;
  background-color: #ff8053;
}

@media screen and (max-width: 600px) {
  #front-works .wrap article .title:after {
    margin: 0.5em auto 0 auto;
    height: 3px;
  }
}

#front-works .wrap article .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 1em;
  overflow: hidden;
}

#front-works .wrap article:before {
  position: absolute;
  top: -0.75em;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: #000;
  font-size: 80px;
  font-weight: 300;
  color: #ff8053;
}

@media screen and (max-width: 600px) {
  #front-works .wrap article:before {
    font-size: 48px;
  }
}

@media screen and (max-width: 600px) {
  #front-works .btn {
    margin: 0 auto;
  }
}

#front-plan {
  display: flex;
  justify-content: flex-end;
}

#front-plan .inner {
  width: 95%;
  background-color: #f5f5f5;
  padding: 2em 0 4em;
  margin: 0;
  border-radius: 150px 0 0 0;
}

@media screen and (max-width: 600px) {
  #front-plan .inner {
    width: 100%;
    padding: 2em 0;
    border-radius: 0;
  }
}

#front-plan .inner .wrap {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap {
    flex-direction: column;
  }
}

#front-plan .inner .wrap .left {
  width: 500px;
  margin-right: 50px;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap .left {
    width: 100%;
    margin: 0;
  }
}

#front-plan .inner .wrap .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#front-plan .inner .wrap .right {
  width: 470px;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap .right {
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
  }
}

#front-plan .inner .wrap .right .title {
  font-size: 32px;
  font-weight: 400;
  color: #ff8053;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap .right .title {
    font-size: 28px;
  }
}

#front-plan .inner .wrap .right .description {
  line-height: 2em;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap .right .description {
    line-height: 2em;
  }
}

#front-plan .inner .wrap .right .btn {
  width: 250px;
  margin: 1em 0 0 auto;
  padding: 0.25em;
  border: 1px solid #ff8053;
}

@media screen and (max-width: 600px) {
  #front-plan .inner .wrap .right .btn {
    width: 80%;
    margin: 2em auto;
  }
}

#front-voice .wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap {
    flex-direction: column;
  }
}

#front-voice .wrap article {
  width: 310px;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap article {
    width: 80vw;
    margin: 0 auto;
  }
}

#front-voice .wrap article .img {
  width: 310px;
  height: 310px;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap article .img {
    width: 80vw;
    height: 60vw;
    overflow: hidden;
  }
}

#front-voice .wrap article .img img {
  width: 100%;
}

#front-voice .wrap article .title {
  font-size: 20px;
  padding: 0.7em 0;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap article .title {
    text-align: center;
  }
}

#front-voice .wrap article .title:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin-top: 0.5em;
  background-color: #ff8053;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap article .title:after {
    margin: 0.5em auto 0;
    width: 60px;
    height: 3px;
  }
}

#front-voice .wrap article .description {
  margin-top: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 制限したい行数が3の場合 */
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #front-voice .wrap article .description {
    margin-top: 0.5em;
    margin-bottom: 3em;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  #front-voice .btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  #front-content {
    margin-bottom: 5em;
  }
}

#front-content .wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #front-content .wrap {
    flex-direction: column;
  }
}

#front-content .wrap a {
  display: block;
  width: 48%;
}

@media screen and (max-width: 600px) {
  #front-content .wrap a {
    width: 100%;
    margin-bottom: 3em;
  }
}

#front-content .wrap a img {
  width: 100%;
}

#front-news article {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ff8053;
  padding: 1em 0;
}

@media screen and (max-width: 600px) {
  #front-news article {
    position: relative;
    flex-wrap: wrap;
    margin: 0 1.5em;
    border-bottom: none;
  }
}

#front-news article .date,
#front-news article .title {
  font-size: 18px;
}

#front-news article .date {
  margin-right: 1em;
}

@media screen and (max-width: 600px) {
  #front-news article .date {
    font-size: 16px;
  }
}

#front-news article .category {
  font-size: 16px;
  margin-right: 1em;
  width: 10em;
  padding: 0.1em 0;
  text-align: center;
  color: #fff;
  border-radius: 50px;
}

@media screen and (max-width: 600px) {
  #front-news article .category {
    font-size: 14px;
  }
}

#front-news article .category.news {
  background-color: #ff8053;
}

#front-news article .category.event {
  background-color: #485396;
}

#front-news article .category.blog {
  background-color: #74cbab;
}

@media screen and (max-width: 600px) {
  #front-news article .title {
    width: 100%;
    margin-top: 0.3em;
  }
}

#front-news article:after {
  content: "";
  position: absolute;
  display: block;
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  background-image: url(./images/arrow.png);
  background-size: cover;
}

@media screen and (max-width: 600px) {
  #front-news article:after {
    width: 2em;
    height: 2em;
    right: 0;
  }
}

section[id^=page-] {
  margin-bottom: 15em;
  padding-top: 123px;
}

@media screen and (max-width: 600px) {
  section[id^=page-] {
    padding-top: 0;
  }
}

section[id^=page-] .wrap {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  section[id^=page-] .wrap {
    padding-top: 8em;
    width: 100%;
  }
}

section[id^=page-] .wrap .nav {
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 600px) {
  section[id^=page-] .wrap .nav {
    justify-content: center;
    margin-bottom: 3em;
  }
}

section[id^=page-] .wrap .nav a {
  display: block;
  border-bottom: 2px dashed #ff8053;
  margin: 0 1.5em;
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  section[id^=page-] .wrap .nav a {
    margin: 0.8em;
  }
}

section[id^=page-] .wrap .nav a.active {
  color: #ff8053;
  font-weight: 700;
}

/*
サービス
*/
#page-service .wrap {
  width: 1000px;
}

@media screen and (max-width: 600px) {
  #page-service .wrap {
    width: 96%;
  }
}

#page-service .wrap .nav {
  width: 1000px;
  margin: 5em auto;
}

@media screen and (max-width: 600px) {
  #page-service .wrap .nav {
    width: 100%;
    margin: 2em auto;
  }
}

#page-service .wrap .nav .active {
  color: #ff8053;
}

#page-service .wrap #service-maintenance article {
  margin-bottom: 5em;
  line-height: 1.8em;
}

#page-service .wrap #service-maintenance article img {
  width: 60%;
  margin: 2em 20%;
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-maintenance article img {
    width: 90%;
    margin: 2em 5%;
  }
}

#page-service .wrap #service-maintenance .linkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-maintenance .linkbox {
    grid-template-columns: repeat(2, 1fr);
  }
}

#page-service .wrap #service-maintenance .linkbox img {
  width: 100%;
  margin: 0;
}

#page-service .wrap #service-flow .nav {
  justify-content: space-around;
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-flow .nav {
    flex-direction: column;
  }
}

#page-service .wrap #service-flow .nav a {
  border-bottom: none;
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-flow .nav a img {
    width: 100%;
  }
}

#page-service .wrap #service-flow .nav a:not(:last-child) {
  position: relative;
}

#page-service .wrap #service-flow .nav a:not(:last-child):after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(./images/flow-arrow.svg);
  top: 50%;
  right: -2.7em;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-flow .nav a:not(:last-child):after {
    transform: translateX(-50%) translateY(0) rotate(90deg);
    bottom: -1.2em;
    top: auto;
    left: 50%;
  }
}

#page-service .wrap #service-flow article.step1 h3,
#page-service .wrap #service-flow article.step2 h3,
#page-service .wrap #service-flow article.step3 h3 {
  color: #fff;
  padding: 1em;
}

#page-service .wrap #service-flow article.step1 h3 {
  background-color: #101d3c;
}

#page-service .wrap #service-flow article.step2 h3 {
  background-color: #00406a;
}

#page-service .wrap #service-flow article.step3 h3 {
  background-color: #015772;
}

#page-service .wrap #service-flow article table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 3em 0;
  border-bottom: 1px solid #888;
}

#page-service .wrap #service-flow article table th,
#page-service .wrap #service-flow article table td {
  border: 1px solid #888;
  padding: 1em;
}

@media screen and (max-width: 600px) {

  #page-service .wrap #service-flow article table th,
  #page-service .wrap #service-flow article table td {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-flow article table tr {
    display: flex;
    flex-direction: column;
  }
}

#page-service .wrap #service-flow article table th {
  width: 20%;
}

@media screen and (max-width: 600px) {
  #page-service .wrap #service-flow article table th {
    width: 100%;
  }
}

#page-service .wrap #service-flow article img {
  width: 100%;
}

/*
プラン集・施工事例
*/
#page-works .nav {
  width: 1000px;
  margin: 5em auto;
}

@media screen and (max-width: 600px) {
  #page-works .nav {
    width: 100%;
    margin: 2em auto;
  }
}

#page-works #works-case .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 1000px;
  margin: 0 auto;
  gap: 5%;
}

@media screen and (max-width: 600px) {
  #page-works #works-case .inner {
    width: 100%;
    padding-top: 0;
  }
}

#page-works #works-case .inner article {
  width: 100;
  margin-bottom: 3em;
}

@media screen and (max-width: 600px) {
  #page-works #works-case .inner article {
    width: 92%;
    margin: 0 auto 3em;
  }
}

#page-works #works-case .inner article .thumbnail {
  aspect-ratio: 1.5/1;
}

#page-works #works-case .inner article .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page-works #works-case .inner article .title {
  width: 80%;
  font-size: 18px;
  padding: 0.25em 0;
  margin-bottom: 1em;
  border-bottom: 2px solid #ff8053;
}

#page-works #works-case .inner article .img {
  width: 90%;
  margin: 0 5%;
  aspect-ratio: 4/3;
}

#page-works #works-case .inner article .img img {
  width: 100%;
}

#page-works #works-plan .wrap {
  width: 1000px;
}

@media screen and (max-width: 600px) {
  #page-works #works-plan .wrap {
    width: 92%;
    margin: 0 auto;
    padding-top: 0;
  }
}

#page-works #works-plan .wrap h3 {
  background-color: #ff8053;
  color: #fff;
  padding: 0.5em 1em;
}

#page-works #works-plan .wrap article {
  width: 100%;
  margin-bottom: 10em;
}

#page-works #works-plan .wrap article .topimg {
  width: 100%;
  margin-bottom: 2em;
}

#page-works #works-plan .wrap article .topimg img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

#page-works #works-plan .wrap article .content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  #page-works #works-plan .wrap article .content {
    flex-direction: column;
  }
}

#page-works #works-plan .wrap article .content .left,
#page-works #works-plan .wrap article .content .right {
  width: 100%;
}

#page-works #works-plan .wrap article .content .left .title,
#page-works #works-plan .wrap article .content .left .subtitle {
  padding: 0.5em;
}

#page-works #works-plan .wrap article .content .left .title {
  border-bottom: 1px solid #000;
}

#page-works #works-plan .wrap article .content .left .subtitle {
  text-align: right;
}

#page-works #works-plan .wrap article .content .right img {
  width: 100%;
}

/*
お客様の声
*/
#page-voice .wrap {
  width: 1000px;
}

@media screen and (max-width: 600px) {
  #page-voice .wrap {
    width: 96%;
  }
}

#page-voice .wrap .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10% 5%;
  margin-bottom: 10em;
}

@media screen and (max-width: 600px) {
  #page-voice .wrap .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

#page-voice .wrap .inner article {
  width: 100%;
}

#page-voice .wrap .inner article .thumbnail img {
  width: 100%;
}

#page-voice .wrap .inner article .title {
  line-height: 1.8em;
  margin-top: 0.5em;
}

#page-voice .wrap .inner article .title:after {
  content: "";
  display: block;
  width: 25%;
  height: 3px;
  margin-top: 0.5em;
  background-color: #ff8053;
}

@media screen and (max-width: 600px) {
  #page-voice .wrap .inner article .title:after {
    margin-top: 0.5em;
  }
}

/*
会社紹介
*/
#page-company .wrap {
  width: 1000px;
}

@media screen and (max-width: 600px) {
  #page-company .wrap {
    width: 96%;
    margin: 0 2%;
  }
}

#page-company .wrap .nav {
  width: 1000px;
  margin: 5em auto;
}

@media screen and (max-width: 600px) {
  #page-company .wrap .nav {
    width: 100%;
    margin: 2em auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  #page-company .wrap .nav a {
    text-align: center;
  }
}

#page-company .wrap #company-stuff article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-stuff article {
    flex-direction: column;
  }
}

#page-company .wrap #company-stuff article .thumbnail {
  width: 27%;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-stuff article .thumbnail {
    width: 90%;
  }
}

#page-company .wrap #company-stuff article .thumbnail img {
  width: 100%;
}

#page-company .wrap #company-stuff article .info {
  width: 68%;
  text-align: right;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-stuff article .info {
    width: 90%;
  }
}

#page-company .wrap #company-stuff article .info .name {
  display: inline-block;
  text-align: right;
  font-size: 1.2em;
  border-bottom: 3px solid #000;
  min-width: 190px;
  margin-bottom: 1em;
  padding: 0.5em 0;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-stuff article .info .name {
    text-align: left;
    min-width: auto;
    width: 100%;
  }
}

#page-company .wrap #company-stuff article .info .name.president {
  border-bottom: 3px solid #c00;
}

#page-company .wrap #company-stuff article .info .name.accounting {
  border-bottom: 3px solid rgb(111, 22, 123);
}

#page-company .wrap #company-stuff article .info .name.construction {
  border-bottom: 3px solid #f70;
}

#page-company .wrap #company-stuff article .info .name span {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.84em;
}

#page-company .wrap #company-stuff article .info .detail {
  text-align: left;
  line-height: 1.8em;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-thought {
    width: 96%;
    margin: 0 2%;
  }
}

#page-company .wrap #company-thought .img {
  margin-bottom: 3em;
}

#page-company .wrap #company-thought .img img {
  width: 100%;
}

#page-company .wrap #company-appeal .top {
  margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-appeal .top {
    width: 96%;
    margin: 0 2% 2em;
  }
}

#page-company .wrap #company-appeal .top img {
  width: 100%;
  margin-bottom: 2em;
}

#page-company .wrap #company-appeal article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-appeal article {
    flex-direction: column;
  }
}

#page-company .wrap #company-appeal article:nth-child(2n+1) {
  flex-direction: row-reverse;
}

#page-company .wrap #company-appeal article:nth-child(2n+1) .title {
  margin: 0 0 auto 0;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-appeal article:nth-child(2n+1) {
    flex-direction: column;
  }
}

#page-company .wrap #company-appeal article .thumbnail,
#page-company .wrap #company-appeal article .info {
  width: 50%;
}

@media screen and (max-width: 600px) {

  #page-company .wrap #company-appeal article .thumbnail,
  #page-company .wrap #company-appeal article .info {
    width: 96%;
    margin: 0 2%;
  }
}

#page-company .wrap #company-appeal article .thumbnail img {
  width: 100%;
}

#page-company .wrap #company-appeal article .info .title,
#page-company .wrap #company-appeal article .info .text {
  padding: 1em;
}

#page-company .wrap #company-appeal article .info .title {
  border-bottom: 1px solid #000;
  width: 80%;
  text-align: center;
  font-size: 1.2em;
}

@media screen and (max-width: 600px) {
  #page-company .wrap #company-appeal article .info .title {
    width: 94%;
    text-align: left;
    padding: 1em 0.5em;
  }
}

#page-company .wrap #company-appeal .bottom {
  width: 96%;
  margin: 0 2%;
}

#company-principles .wrap {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #company-principles .wrap {
    width: 96%;
    margin: 0 auto;
  }
}

#company-principles .wrap article h3 {
  padding: 0.5em 0;
  border-bottom: 1px solid #555;
}

#company-principles .wrap article img {
  width: 100%;
  margin: 4em 0 0;
}

#company-principles .wrap article .center {
  text-align: center;
}

#company-principles .wrap article.principles01 h3 {
  text-align: center;
  border-bottom: none;
}

#company-profile .wrap {
  display: flex;
  justify-content: space-between;
  width: 900px;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap {
    width: 96%;
  }
}

#company-profile .wrap .left {
  width: 50%;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap .left {
    width: 100%;
  }
}

#company-profile .wrap .left table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap .left table tr {
    display: flex;
    flex-direction: column;
  }
}

#company-profile .wrap .left table th,
#company-profile .wrap .left table td {
  border: 1px solid #333;
  padding: 1.5em 1em;
}

@media screen and (max-width: 600px) {

  #company-profile .wrap .left table th,
  #company-profile .wrap .left table td {
    box-sizing: border-box;
    border: 1px solid #ff8053;
    padding: 1em;
  }
}

#company-profile .wrap .left table th {
  width: 25%;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap .left table th {
    width: 100%;
    background-color: #ff8053;
    color: #fff;
  }
}

#company-profile .wrap .left table td.table_text {
  padding: 3em 1em;
  text-align: left;
  line-height: 2.5em;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap .left table td.table_text {
    width: 100%;
  }
}

#company-profile .wrap .right {
  width: 46%;
}

@media screen and (max-width: 600px) {
  #company-profile .wrap .right {
    display: none;
  }
}

#company-profile .wrap .right img {
  width: 100%;
}

#company-profile .personal {
  margin-top: 5em;
}

#company-profile .personal .img {
  width: 34%;
  margin: 0 33%;
}

@media screen and (max-width: 600px) {
  #company-profile .personal .img {
    width: 70%;
    margin: 0 15%;
  }
}

#company-profile .personal .name {
  text-align: center;
  padding: 1em 0;
  line-height: 1.5em;
  font-size: 2em;
}

#company-profile .personal .name .min {
  font-size: 0.6em;
}

#company-profile .personal .description {
  line-height: 2em;
}

@media screen and (max-width: 600px) {
  #company-profile .personal .description {
    width: 96%;
    margin: 0 2%;
  }
}

/*
お問い合わせ
*/
#page-contact .wrap {
  width: 700px;
  margin: 5em auto 10em;
}

#page-contact .wrap .nav {
  margin: 5em auto;
}

@media screen and (max-width: 600px) {
  #page-contact .wrap .nav {
    width: 100%;
    margin: 0 auto 2em;
  }
}

#page-contact .wrap .nav .active {
  color: #ff8053;
}

#page-contact .wrap article .req:after {
  content: "必須";
  display: inline-block;
  background-color: #ff8053;
  color: #fff;
  margin-left: 0.5em;
  padding: 0 1em;
  border-radius: 50px;
  font-size: 14px;
}

#page-contact .wrap article .item {
  margin-bottom: 2em;
}

#page-contact .wrap article .item .left {
  margin-bottom: 0.5em;
}

#page-contact .wrap article .item .right input,
#page-contact .wrap article .item .right textarea {
  width: 100%;
  padding: 0.5em;
  font-size: 18px;
}

#page-contact .wrap article .item .right .wpcf7-list-item label {
  display: flex;
  margin-right: 3em;
}

#page-contact .wrap article .item .right .wpcf7-list-item label input {
  width: auto;
}

#page-contact .wrap .note {
  font-size: 16px;
  padding-bottom: 3em;
}

#page-contact .wrap .note a {
  color: #ff8053;
  text-decoration: underline;
}

#page-contact .wrap .btn #submit {
  display: none;
}

#page-contact .wrap .btn label {
  display: block;
  width: 500px;
  margin: 0 auto;
  background-color: #101b3b;
  color: #fff;
  text-align: center;
  margin-top: 3em;
  padding: 0.75em 0;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

#page-contact .wrap .btn label:hover {
  opacity: 0.8;
}

#archive {
  min-width: 1200px;
}

@media screen and (max-width: 600px) {
  #archive {
    min-width: auto;
  }
}

#archive .wrap {
  width: 1000px;
  margin: 3em auto 8em;
}

@media screen and (max-width: 600px) {
  #archive .wrap {
    margin: 0 auto 8em;
    padding-top: 8em;
    width: 100%;
  }
}

#archive .wrap .nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 5em;
}

@media screen and (max-width: 600px) {
  #archive .wrap .nav {
    justify-content: center;
    margin-bottom: 3em;
  }
}

#archive .wrap .nav a {
  display: block;
  border-bottom: 2px dashed #ff8053;
  margin: 0 1.5em;
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  #archive .wrap .nav a {
    margin: 0.8em;
  }
}

#archive .wrap .nav a.active {
  color: #ff8053;
  font-weight: 700;
}

#archive .wrap article {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ff8053;
  padding: 1em 0;
}

@media screen and (max-width: 600px) {
  #archive .wrap article {
    position: relative;
    flex-wrap: wrap;
    margin: 0 1.5em;
  }
}

#archive .wrap article .date,
#archive .wrap article .title {
  font-size: 18px;
}

#archive .wrap article .date {
  margin-right: 1em;
}

@media screen and (max-width: 600px) {
  #archive .wrap article .date {
    font-size: 16px;
  }
}

#archive .wrap article .category {
  font-size: 16px;
  margin-right: 3em;
  width: 10em;
  padding: 0.1em 0;
  text-align: center;
  color: #fff;
  border-radius: 50px;
}

@media screen and (max-width: 600px) {
  #archive .wrap article .category {
    font-size: 14px;
  }
}

#archive .wrap article .category.news {
  background-color: #ff8053;
}

#archive .wrap article .category.event {
  background-color: #485396;
}

#archive .wrap article .category.blog {
  background-color: #74cbab;
}

@media screen and (max-width: 600px) {
  #archive .wrap article .title {
    width: 100%;
    margin-top: 0.3em;
  }
}

#archive .wrap article:after {
  content: "";
  position: absolute;
  display: block;
  right: 1em;
  width: 1.5em;
  height: 1.5em;
  background-image: url(./images/arrow.png);
  background-size: cover;
}

@media screen and (max-width: 600px) {
  #archive .wrap article:after {
    width: 2em;
    height: 2em;
    right: 0;
  }
}

#archive .wrap .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5em 0 0;
}

#archive .wrap .pagination .nav-links .page-numbers {
  font-size: 18px;
  padding: 0 1em;
}

#archive .wrap .pagination .nav-links .page-numbers.current {
  color: #ff8053;
}

#archive .wrap .pagination .nav-links .page-numbers .arrow {
  display: block;
  width: 1.2em;
}

#archive .wrap .pagination .nav-links .page-numbers .arrow.left {
  transform: rotate(180deg);
}

#single {
  min-width: 1200px;
}

@media screen and (max-width: 600px) {
  #single {
    min-width: auto;
  }
}

#single .wrap {
  width: 1000px;
  margin: 3em auto;
}

@media screen and (max-width: 600px) {
  #single .wrap {
    width: 92%;
    margin: 0 auto 8em;
    padding-top: 8em;
  }
}

#single .wrap h3 {
  padding: 0.5em 0.5em 0.2em 0.3em;
  font-size: 24px;
  margin: 0;
}

#single .wrap .date {
  color: #555;
  border-bottom: 2px solid #ff8053;
  padding: 0 0.5em 0.5em 0.7em;
  margin-bottom: 1em;
}

#single .wrap .thumbnail {
  display: block;
  width: 100%;
  margin: 1em 0 2em;
}

#single .wrap .text {
  font-size: 16px;
  line-height: 1.5em;
  font-feature-settings: "palt";
}

#single .wrap .gallery {
  width: 100%;
  margin: 5em 0;
  display: grid;
  grid-template: 1fr/1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 600px) {
  #single .wrap .gallery {
    margin: 3em 0;
    gap: 10px;
  }
}

#single .wrap .gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#single .wrap .gallery a:first-child {
  grid-column: 1/4;
  grid-row: 1/3;
}

#single .wrap .gallery a:first-child img {
  aspect-ratio: 3/1;
  object-position: center;
}

#single .wrap .back {
  position: relative;
  display: block;
  width: 30%;
  margin: 7em 35%;
  text-align: center;
  background-color: #ff8053;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 0.5em 0;
  border-radius: 25px;
}

@media screen and (max-width: 600px) {
  #single .wrap .back {
    width: 70%;
    margin: 7em 15%;
  }
}

#single .wrap .back:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 1.5em;
  transform: translateY(-50%) rotate(-45deg);
}

#single.news .wrap .img {
  width: 90%;
  margin: 1em 5%;
}

footer {
  min-width: 1200px;
}

@media screen and (max-width: 600px) {
  footer {
    min-width: auto;
  }
}

footer #contact {
  background-color: #ff8053;
  padding: 3em 0;
}

footer #contact h2 {
  color: #fff;
}

footer #contact .inner {
  display: flex;
  justify-content: space-between;
  width: 700px;
  margin: 5em auto 0;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 600px) {
  footer #contact .inner {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    border: none;
  }
}

footer #contact .inner article {
  width: 350px;
  padding: 1em 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  footer #contact .inner article {
    width: 80vw;
    margin: 0 auto 3em auto;
    padding-top: 3em;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

footer #contact .inner article .img {
  width: 175px;
  height: 80px;
  margin: 0 auto;
}

footer #contact .inner article .img img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

footer #contact .inner article .title {
  position: relative;
  color: #fff;
  padding: 1em 0;
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: 300;
}

footer #contact .inner article .title:before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 40%;
  height: 2px;
  background-color: #fff;
}

@media screen and (max-width: 600px) {
  footer #contact .inner article .title:before {
    width: 20%;
  }
}

footer #contact .inner article .text {
  color: #fff;
}

footer #contact .inner article .text span {
  display: block;
  margin-bottom: 0.5em;
  font-size: 22px;
  letter-spacing: 0.1em;
}

footer #contact .inner article .btn {
  display: block;
  position: relative;
  width: 60%;
  margin: 0 20%;
  padding: 0.25em 0;
  color: #ff8053;
  background-color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

footer #contact .inner article .btn:before {
  position: absolute;
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #ff8053;
  border-right: 2px solid #ff8053;
  top: 50%;
  right: 1em;
  transform: rotate(45deg) translateY(-50%);
}

footer #bottom {
  background-color: #2d3c5f;
  color: #fff;
}

@media screen and (max-width: 600px) {
  footer #bottom {
    display: none;
  }
}

footer #bottom .sitemap {
  display: flex;
  flex-wrap: wrap;
  width: 900px;
  margin: 0 auto;
  padding: 5em 0 0;
}

footer #bottom .sitemap .item {
  width: 25%;
  margin-bottom: 5em;
  color: #fff;
  padding: 0 4%;
  box-sizing: border-box;
}

footer #bottom .sitemap .item a {
  display: block;
}

footer #bottom .sitemap .item .main {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 1em;
}

footer #bottom .sitemap .item .sub {
  margin-bottom: 1em;
}

footer #bottom .sitemap .item .sub:before {
  content: "- ";
}

footer #info {
  background-color: #2d3c5f;
}

footer #info .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 850px;
  margin: 0 auto;
  padding-bottom: 5em;
}

@media screen and (max-width: 600px) {
  footer #info .wrap {
    width: 100vw;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 5em 0 0;
  }
}

@media screen and (max-width: 600px) {
  footer #info .wrap .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
  }
}

footer #info .wrap .left .sns {
  display: flex;
  margin-bottom: 3em;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .left .sns {
    flex-direction: column-reverse;
    order: 3;
    margin: 3em 0;
  }
}

footer #info .wrap .left .sns a {
  display: block;
  padding: 0 0.9em 0 0;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .left .sns a {
    padding: 1em 0;
  }
}

footer #info .wrap .left .logo {
  margin-bottom: 1em;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .left .logo {
    order: 1;
    margin: 2em 0;
  }
}

footer #info .wrap .left .text {
  color: #fff;
  font-weight: 100;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .left .text {
    order: 2;
    text-align: center;
    line-height: 1.5em;
  }
}

footer #info .wrap .right .title {
  color: #fff;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .right .title {
    text-align: center;
  }
}

footer #info .wrap .right table {
  margin-bottom: 2em;
  border-spacing: 0 0.5em;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .right table {
    width: 90%;
    margin: 0 5% 2em 5%;
  }
}

footer #info .wrap .right table th {
  width: 14em;
  background-color: #fdf2ee;
  padding: 0.25em 0;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .right table th {
    font-size: 14px;
  }
}

footer #info .wrap .right table td {
  width: 20em;
  text-align: center;
  background-color: #fff;
  padding: 0.25em 0;
}

@media screen and (max-width: 600px) {
  footer #info .wrap .right table td {
    font-size: 14px;
  }
}

footer .copyright {
  background-color: #2d3c5f;
  color: #fff;
  text-align: center;
  padding: 1em 0 2em;
  font-size: 12px;
}

body {
  font-family: "Noto Serif JP", serif;
  margin: 0;
  position: relative;
}

h1 {
  margin: 0;
}

h2 {
  font-weight: 700;
  font-size: 48px;
  color: #ff8053;
  text-align: center;
  letter-spacing: 0.4em;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 36px;
    letter-spacing: 0.3em;
  }
}

h2 .min {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
}

@media screen and (max-width: 600px) {
  h2 .min {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

a.link {
  text-decoration: underline;
  color: #ff8053;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

img {
  margin: 0;
  vertical-align: baseline;
}

body {
  position: relative;
}

.pc {
  display: block;
}

@media screen and (max-width: 600px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}

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

.grecaptcha-badge {
  visibility: hidden;
}
