:root {
  --primary-color: #d2c0a2;
  --secondary-color: #F0F0F0;
  --tertiary-color: #E6E1CF;
  --text-color: #000;
  --text-subcolor: #2b2b2b;
  --ff-shippori-mincho: "Shippori Mincho", serif;
  --fw-shippori-mincho-regular: 400;
}

/* global style */
html {
  /*scroll-behavior: smooth;*/
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-color);
  position: relative;
  z-index: 0;
}
body > article {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 120px;
  background: #fff;
  position: relative;
  z-index: 0;
}
body > article > section {
  width: 100%;
  overflow-x: hidden;
}
body > article > section > .inner {
  width: 100%;
  max-width: 1400px;
  padding: 90px;
  margin: 0 auto;
}

header {
  --global-menu-height: 80px;
  --header-content-height: calc(100svh - var(--global-menu-height));
  width: 100%;
}
p {
  font-size: 1em;
  margin-bottom: 1em;
}
* p:last-of-type,
.no-text-margin p {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
br.sp-break {
  display: none;
}
label {
  font-weight: 500;
}
input[type="checkbox"]+label {
  font-weight: 300;
}
input,textarea {
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  vertical-align: middle;
  padding: .25em .5em;
}
input[type='submit'] {
  padding: .25em 1em;
  margin-bottom: 8px;
  color: #fff;
  border-radius: 8px;
  background: #2B2B2B;
  box-shadow: 0px 8px 0px 0px #D4D4D4;
}
.obj-fit > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: .25em 1em;
  color: #FFF;
  text-decoration: none;
  background: #208133;
  box-shadow: 0 8px 0 #025913;
}

/* #loading */
#loading {
  width: 100%;
  height: 100svh;
  position: fixed;
  z-index: 9999;
  background: #000;
}

/* header global-menu */
#global-menu {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--global-menu-height);
  display: flex;
  overflow: hidden;
  padding: 0px 30px;
  border-bottom: 1px solid #747374;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  z-index: 999;
  background: #fff;
}

#global-menu .inner {
  display: flex;
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  align-items: center;
  align-self: stretch;
}

#global-menu .inner .block {
  display: flex;
  overflow: hidden;
  padding: 16px 0px;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  align-self: stretch;
  align-items: stretch;
}
#global-menu .inner .block span {
  display: flex;
  align-items: center;
}
#global-menu .inner .block .tel a{
  height: auto;
  display: inline-block;
  background: var(--text-subcolor);
  padding: 8px 14px;
  border-radius: 4px;
}
#global-menu .inner .block span a img {
  height: auto;
  width: 100%;
}

/* header main */
header .main {
  z-index: 0;
  width: 100%;
  height: var(--header-content-height);
  position: relative;
}

header .main .rectangle_1 {
  z-index: 2;
  width: 40%;
  width: 490px;
  height: calc(100% - 80px);
  position: absolute;
  top: calc(50% - ((100% - 80px) / 2));
  left: 40px;
  background-color: var(--secondary-color);
}

header .main .rectangle_2 {
  z-index: 2;
  width: 38%;
  max-width: 646px;
  height: calc(100% - 40px);
  position: absolute;
  top: 20px;
  right: 0;
  background-color: var(--text-color);
}

header .main .rectangle_3 {
  z-index: 3;
  width: calc(100% - 480px);
  height: calc(100% - 160px);
  position: absolute;
  top: 80px;
  right: 0;
  background: url(../img/image-header.jpg) no-repeat center;
  background-size: cover;
}

header .main .inner {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  height: 100%;
}

header .main .inner .text {
  display: flex;
  max-width: 670px;
  gap: 40px;
  padding: 40px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

header .main .inner .text div,
header .main .inner .text div ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

header .main .inner .text>div {
  gap: 20px;
}

header .main .inner .text div ul {
  gap: 10px;
}


header .main .inner .text .bgcolor {
  background: var(--primary-color);
}

header .main .inner .text ul li {
  background: var(--text-color);
}

/* questions */
#questions {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

#questions .inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

#questions .inner .grid-block {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
}

#questions .inner .block-bubbles {
  font-size: 2em;
  display: flex;
  position: relative;
  padding: 60px;
  border-radius: 16px;
  background: #F5F5F5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

#questions .inner .block-bubbles:before,
#questions .inner .block-bubbles:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
}

#questions .inner .block-bubbles:before {
  left: 30px;
  top: 30px;
  border-radius: 8px 0px 0px 0px;
  border-top: 2px solid #D2C0A2;
  border-left: 2px solid #D2C0A2;
}

#questions .inner .block-bubbles:after {
  right: 30px;
  bottom: 30px;
  border-radius: 0 0px 8px 0px;
  border-right: 2px solid #D2C0A2;
  border-bottom: 2px solid #D2C0A2;
}

#questions .inner>div:last-of-type {
  width: 100%;
  text-align: center;
}

#questions .inner>div:last-of-type:after {
  display: block;
  margin: 0 auto;
  content: "";
  width: 320px;
  height: 80px;
  background-color: var(--tertiary-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#questions .inner>div:last-of-type p {
  padding: 2em 1.5em;
}

#questions .inner>div:last-of-type p span {
  display: inline-block;
  font-size: 2em;
}
#questions .inner>div:last-of-type p span:first-of-type {
  margin-bottom: 1em;
}

/* #recommend */
#recommend {
  padding: 0 2.34375vw;
}

#recommend h2 {
  position: relative;
  display: block;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}

#recommend h2 span {
  display: inline-block;
  background: var(--text-color);
  padding: .5em 1em;
}

#recommend .inner {
  position: relative;
  padding: 0 2.34375vw;
}

#recommend .inner .carports {
  z-index: -1;
  position: relative;
  padding: 30px 3.125vw 90px 9.375vw;
  display: grid;
  gap: 0 3.125vw;
  grid-template-columns: auto auto auto;
  grid-template-rows: calc(((100vw - (2.34375vw * 4) - (3.125vw * 3) - 9.375vw)) / 3 * 1.414) auto;
}

#recommend h2:after,
#recommend .inner .carports:after {
  display: block;
  opacity: 0.25;
  position: absolute;
  color: #D2C0A2;
  font-family: "Noto Serif JP";
  font-size: 4.166vw;
  font-weight: 400;
  line-height: 1;
}

#recommend h2:after {
  content: "CARPORT";
  right: -2.34375vw;
  bottom: 0;
}

#recommend .inner .carports:before {
  position: absolute;
  content: "";
  display: block;
  top: -2em;
  left: calc(-2.34375vw * 2);
  width: 30%;
  height: 100%;
  background: var(--tertiary-color);
  z-index: -2;
}

#recommend .inner .carports:after {
  writing-mode: vertical-rl;
  display: block;
  content: "RECOMMENDED";
  right: calc(-2.34375vw - (2.34375vw / 2));
  top: 0;
  color: #D2C0A2;
}

#recommend .inner .carports>section {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

#recommend .inner .carports>section:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: calc(-2.34375vw / 2);
  bottom: calc(-2.34375vw / 2);
  background: #D4D4D4;
  z-index: -1;
}

#recommend .inner .carports>section.functional .heading {
  background: url(../img/image-customer-functional.jpg) no-repeat center;
  background-size: cover;
}

#recommend .inner .carports>section.design .heading {
  background: url(../img/image-recommend-design.jpg) no-repeat center;
  background-size: cover;
}

#recommend .inner .carports>section.price .heading {
  background: url(../img/image-recommend-price.jpg) no-repeat center;
  background-size: cover;
}

#recommend .inner .carports>section .heading {
  position: relative;
}

#recommend .inner .carports>section h3 {
  position: absolute;
  top: 2em;
  left: -.5em;
  background: var(--primary-color);
  color: var(--text-color);
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  padding: .25em 1.5em;
  letter-spacing: .1em;
}

#recommend .inner .carports>section dl {
  background: var(--text-color);
  padding: 2em 1em 1em;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
}

#recommend .inner .carports>section dl dt {
  position: relative;
  text-align: right;
  margin-bottom: .5em;
}

/* .closing */
section.closing {
  width: 100%;
}

section.closing .inner {
  padding: 0;
  max-width: 100%;
  font-size: 32px;
  color: #fff;
  background: linear-gradient(0deg, #474747 0%, #474747 100%),
    linear-gradient(0deg, #74695A 0%, #74695A 100%),
    #C4B29C;
}

section.closing h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}

section.closing .inner>div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

section.closing .inner>div.middle {
  gap: .5em;
  padding: 2em;
  flex-direction: column;
  background: #332C2D;
}

section.closing .inner div.text {
  display: flex;
  width: 50%;
  justify-content: center;
}

section.closing .inner div.image {
  padding: 4em 0;
  width: 50%;
}

section.closing .inner .top div.image {
  background: url(../img/image-closing-top.jpg) no-repeat center;
  background-size: cover;
}
section.closing .inner .bottom div.text {
  font-size: .5em;
}
section.closing .inner .bottom div.image {
  background: url(../img/image-closing-bottom.jpg) no-repeat center;
  background-size: cover;
}
section.closing a.tel {
  font-size: 2.0em;
  color: #fff;
}
section.closing a.tel span {
  width: .75em;
  height: .75em;
  display: inline-block;
  margin-right: .25em;
  padding-top: .05em;
}

/* #features */
#features .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
#features .wrap-features {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 90px 0;
  gap: 90px;
}
#features .wrap-features > section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 0;
}
#features .wrap-features > section:nth-of-type(even) {
  align-items: flex-start;
} 
#features .wrap-features > section:after {
  width: 80%;
  height: calc( 100% - 60px );
  left: 0;
  content: "";
  position: absolute;
  z-index: -1;
}
#features .wrap-features > section:nth-of-type(even):after {
  left: auto;
  right: 0;
}
#features .wrap-features > section.feature1:after {
  background:url(../img/image-features01.jpg) no-repeat top right;
  background-size: cover;
}
#features .wrap-features > section.feature2:after {
  background:url(../img/image-closing-bottom.jpg) no-repeat top left;
  background-size: cover;
}
#features .wrap-features > section.feature3:after {
  background:url(../img/image-features03.jpeg) no-repeat top right;
  background-size: cover;
  filter: brightness(0.95);
}
#features .wrap-features > section .block {
  max-width: 692px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 60px;
}
#features .wrap-features > section .block h3 {
  font-size: 40px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 30px;
  gap: 30px;
}
#features .wrap-features > section .block h3 span {
  display: block;
  width: 100%;
  background: #fff;
  padding: .25em 1em;
  margin: 0 0 0 30px;
}
#features .wrap-features > section:nth-of-type(even) .block h3 {
  padding: 0 30px 0 ;
  align-items: flex-end;
} 
#features .wrap-features > section:nth-of-type(even) .block h3 span{
  padding: .25em 1em;
  margin: 0 30px 0 0;
}
#features .wrap-features > section .text {
  background: var(--text-color);
  color: #fff;
  padding: 60px;
}
#features .wrap-features > section .award {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}
#features .wrap-features > section .award > h4 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  font-size: 48px;
  border-left: 1px solid #fff;
  color: #4F4F4F;
  padding-left: 15px;
  line-height: 1;
}
#features .wrap-features > section .award > p {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#features .wrap-features > section .award > div {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

#suggest .inner {
  display: grid;
  gap: 90px;
}
#suggest .inner .first {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
#suggest .inner .first h2 {
  background: rgba(43, 43, 43, 0.75);
  padding: 30px;
  line-height: 1.5;
  color: #fff;
  font-weight: 300;
  display: inline-block;
  font-size: 24px;
}
#suggest .inner .first h2 span {
  display: inline-flex;
  font-size: 1.5em;
  align-items: center;
  gap: .25em;
}
#suggest .inner .first h2 span:after {
  content: "";
  width: 2em;
  height: 1px;
  background: #fff;
}
#suggest .inner .first .subhead {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  background: url(../img/image-suggest-top.jpg) no-repeat center;
  background-size: cover;
  padding: 60px;
  padding-bottom: 240px;
}
#suggest .inner .first .photo {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: url(../img/image-construction-lighting.jpg) no-repeat center;
  background-size: cover;
}
#suggest .inner .first .text {
  padding: 60px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  font-size: 24px;
}
#suggest .inner .second {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 400px;
  gap: 60px;
}
#suggest .inner .second .price {
  padding: 60px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  background: var(--secondary-color);
}
#suggest .inner .second .price .carport {
  display: flex;
    font-size: 16px;
    align-items: center;
}
#suggest .inner .second .price .carport p {
  padding: 0 1em; 
}
#suggest .inner .second .price .carport p:first-of-type {
  border-right: 1px solid var(--text-color);
}
#suggest .inner .second .price dl {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
#suggest .inner .second .price .amount {
  display: flex;
  align-items: center;
  font-size: 64px;
  font-weight: 500;
  gap: .5em;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 8px;
}
#suggest .inner .second .price .amount dd {
  line-height: 1;
}
#suggest .inner .second .price .amount dd span {
  font-size: .5em;
  padding-right: .25em;
}
#suggest .inner .second .price dd ul {
  font-size: 16px;
}
#suggest .inner .second .photo1 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: url(../img/image-customer-functional.jpg) no-repeat center;
  background-size: cover;
}
#suggest .inner .second .photo2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: url(../img/image-customer01-3.jpg) no-repeat center;
  background-size: cover;
}
#suggest .makers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#suggest .makers h3 {
  font-size: 40px;
}
#suggest .makers ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  gap: 60px 30px;
}
#suggest .makers ul li {
  min-width: calc( calc( 100% - 60px ) / 3 );
  height: 64px;
  text-align: center;
}
#suggest .makers ul li img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

/* #construction */
#construction {
  background: var(--text-color);
  color: #fff;
}
#construction .inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#construction h2 {
  padding: 60px 0px;
  text-align: center;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 40px;
  font-weight: 400;
}
#construction .grid-block {
  display: grid;
  grid-template-columns: repeat(2,minmax(auto,1fr));
  gap: 60px;
}
#construction .grid-block section {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 16px;
}
#construction .grid-block section > img {
  height: 414px;
  width: 100%;
  object-fit: cover;
}

/* #customer */
#customer .inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
#customer .inner > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#customer .inner h2 {
  display: inline-block;
  width: 100%;
  max-width: 360px;
}
#customer .inner > div section {
  padding: 60px;
  background: var(--text-color);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
#customer .inner > div section h3 {
  color: var(--text-color);
  font-size: 32px;
  font-weight: 400;
  padding: .25em .5em;
  display: inline-block;
  background: #D2C0A2;
}
#customer .inner > div section .text {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
#customer .inner > div section .image {
  max-width: 330px;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
#customer .inner > div section .image > div {
  height: calc( 50% - 15px );
  width: 100%;
}
#customer .inner > div section .image > div img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* #guide */

#guide h2 {
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
#guide h3 {
  font-size: 40px;
  margin-bottom: .5em;
}
#guide h3 span {
  display: block;
  margin-left: -.5em;
  line-height: 1.25;
}
#guide ol li {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 60px 0;
  border-top: 1px solid var(--text-color);
}
#guide ol li:nth-of-type(even) {
  flex-direction: row-reverse;
}
#guide ol li > img {
  width: calc( 45% - 30px );
  max-width: 625px;
  min-height: 531px;
  object-fit: cover;
}
#guide ol li .text {
  padding: 60px;
  width: calc( 55% - 30px );
}

/* #qa */
#qa .inner {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}
#qa h2 + div {
  position: relative;
  width: 100%;
  padding-top: 25%;
  background: url(../img/image-closing-bottom.jpg) no-repeat center;
  background-size: cover;
}
#qa .inner dl {
  background: var(--secondary-color);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#qa .inner dl > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#qa .inner dt,
#qa .inner dd {
  width: 90%;
  padding: 30px;
  background: #fff;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
}
#qa .inner dd {
  background: var(--tertiary-color);
  margin: 0 0 0 auto;
}
#qa .inner dt:before, 
#qa .inner dd:before {
  width: 50px;
  height: 50px;
  content: "";
  display: inline-block;
}
#qa .inner dt:before {
  background: url(../img/qa-text-q.svg) no-repeat center;
  background-size: contain;
}
#qa .inner dd:before {
  background: url(../img/qa-text-a.svg) no-repeat center;
  background-size: contain;
}

/* #contact */
#contact .inner {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--text-color);
}
#contact h2 {
  width: 100%;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  border-bottom: 1px solid var(--text-color);
}
#contact form {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5em;
}
#contact form > div {
  display: grid;
  grid-template-columns: 10em 1fr;
  width: 100%;
  align-items: center;
}
#contact form label.required {
  display: inline-flex;
  gap: .5em;
  align-items: center;
}
#contact form label.required:before {
  display: inline;
  content: "*必須";
  font-size: 14px;
  font-weight: 500;
  color: #A90000;
}
#contact form .col-span {
  grid-template-columns: 1fr;
  gap: 15px;
}
#contact form .box-construction > div{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: .5em;
  justify-content: flex-start;
}
#contact label.error {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  font-size: 14px;
  color: #a50009;
}
#contact .col-span label.error {
  grid-row: auto;
  grid-column: auto;
}

#pripoly {
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
#pripoly > div {
  padding: 15px;
  font-size: 14px;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  height: 200px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* #pr1 */
#pr1 {
  position: relative;
  background: var(--tertiary-color);
  z-index: 0;
}
#pr1:after {
  content: "";
  width: 61.406vw;
  height: calc( 100% - 150px);
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/image-closing-bottom.jpg);
  z-index: -1;
}
#pr1 .inner{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}
#pr1 h2 {
  line-height: 1.25;
  font-size: 56px;
  font-weight: 500;
}
#pr1 h2 span {
  font-size: 1.5em;
}
#pr1 h2,
#pr1 .inner > div {
  display: inline-block;
  background: #fff;
  padding: 30px;
}
#pr1 section {
  position: relative;
  font-size: 16px;
  padding: 30px;
  background: var(--tertiary-color);
}
#pr1 section:before,
#pr1 section:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
}
#pr1 section:before {
  top: 0;
  left: 0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
#pr1 section:after{
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
#pr1 section h3,
#pr1 section h4 {
  font-size: 16px;
}
#pr1 section address {
  font-style: normal;
}

/* event */
#event .inner {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#event .inner > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
#event .inner .highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 90px;
}
#event .inner .soudankai {
  padding: 60px;
  background: #FFFAF3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
#event .inner .soudankai h3 {
  font-size: 40px;
}

/* qr2 */
#pr2 {
  background: var(--tertiary-color);
}
#pr2 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 100%;
}
#pr2 h2 {
  font-size: 56px;
  font-weight: 500;
}
#pr2 h2 + p {
  font-weight: 500;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: flex-end;
  text-align: center;
}
#pr2 h2 + p:before,
#pr2 h2 + p:after{
  background: var(--text-color);
  width: 1px;
  border-radius: 4px;
  content: "";
  height: 100%;
  display: block;
  height: 1.5em;
}
#pr2 h2 + p:before {
  transform: rotate(-35deg);
}
#pr2 h2 + p:after {
  transform: rotate(35deg);
}

#pr2 .gallery {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-template-rows: calc( ( 100vw - 180px - 40px ) / 5 * 1.618 );
  gap: 10px;
}
#pr2 .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pr2 .inner > dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  max-width: 768px;
  padding: 60px;
  background: #fff;
}
#pr2 .inner > dl > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#pr2 .inner > dl > div > dt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 500;
  border-bottom: 1px solid var(--text-color);
}
#pr2 .inner > dl > div > dt:after {
  content: "";
  display: inline-block;
 width: 24px;
 height: 12px;
 background: url(../img/accor_arrow.svg) no-repeat center;
 background-size: contain; 
 transition: .3s;
}
#pr2 .inner > dl > div > dt.open:after {
  transform: rotate(180deg);
  transition: .3s;
}
#pr2 .inner > dl > div > dd {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#pr2 .inner > dl > div > dd dl div{
  display: flex;
  flex-direction: row;
  gap: 1em;
}

/* #thanks */
#thanks .inner {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 90px 0;
}
#thanks h1 {
  text-align: center;
  display: inline-block;
  width: 100%;
  font-size: 48px;
  padding: 30px 0;
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
}
#thanks h1 + div.image {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc( 100% / 1.614);
  background: url(../img/image-closing-bottom.jpg) no-repeat center;
  background-size: cover;
}
#thanks h2 {
  font-size: 24px;
  text-align: center;
}
#thanks .text p {
  text-align: center;
}
#thanks .text a {
  display: inline-block;
}
#thanks .text a span {
  display: inline-block;
  padding: .5em .5em;
  border-radius: 4px; 
  background: var(--text-color);
}
#thanks .text a span img {
  height: 24px;
}

@media screen and (max-width: 980px) {
  br.sp-break {
    display: inline;
  }
  .button {
    font-size: 4vw;
    border-radius: .5em;
    box-shadow: 0 .5em 0 #025913;
  }
  body > article {
    gap: 12vw;
    font-size: 2.4vw;
  }
  body > article > section > .inner {
    padding: 6vw 4vw;
    gap: 6vw;
  }
  #global-menu {
    padding: 0px 3vw;
  }
  #global-menu .inner {
    gap: 3vw;
  }
  #global-menu .inner .logo{
    width: 30%;
  }
  #global-menu .inner .block {
    width: 70%;
    gap: 3vw;
    align-items: center;
  }
  #global-menu .inner .block .tel a {
    padding: 1.5vw 2vw;
    border-radius: 1vw;
  }
  header .main .inner {
    padding: 4vw;
  }
  header .main .inner .text {
    width: 75%;
    padding: 0;
    margin-left: -4vw;
  }
  header .main .rectangle_1 {
    width: 50%;
    left: 4vw;
  }
  header .main .rectangle_3 {
    width: 55%;
  }
  #questions .inner .grid-block {
    gap: 6vw;
    position: relative;
  }
  #questions .inner .block-bubbles {
    padding: 6vw;
    border-radius: .5em;
  }
  #questions .inner .block-bubbles:before, #questions .inner .block-bubbles:after {
    width: 6vw;
    height: 6vw;
  }
  #questions .inner .block-bubbles:before {
    left: 3vw;
    top: 3vw
  }
  #questions .inner .grid-block {
    gap: 6vw;
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  #questions .inner .grid-block .illust {
    position: absolute;
    top: -5vw;
    width: 40%;
    right: -4vw;
    z-index: 3;
  }
  #questions .inner .block-bubbles {
    padding: 6vw;
    border-radius: .5em;
    margin: 0 auto 0 0;
    font-size: 3vw;
  }
  #questions .inner .block-bubbles:before, #questions .inner .block-bubbles:after {
    display: none;
  }
  #questions .inner>div:last-of-type p {
    padding: 0;
    margin-bottom: 2em;
  }
  #questions .inner>div:last-of-type p span {
    display: inline-block;
    font-size: 2em;
  }
  #questions .inner>div:last-of-type:after {
    width: 60vw;
    height: 10vw;
  }
  #recommend h2 {
    font-size: 6vw;
  }
  
  #recommend .inner .carports>section h3 {
    font-size: 1.5em;
  }
  #recommend .inner .carports>section .heading {
    padding-top: 61.8%;
  }
  #recommend .inner .carports {
    gap: 7vw;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 3vw 3.125vw 9vw;
  }
  #recommend .inner .carports:after {
    margin-top: 1vw;
  }

  section.closing .inner>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.closing .inner div.text {
    padding: 2em 0;
  }
  section.closing .inner div.image {
    width: 100%;
  }
  section.closing h2 {
    font-size: 6vw;
  }
  section.closing .inner .bottom div.text {
    width: 100%;
    padding: 4em 0;
  }
  section.closing .inner .bottom div.text > div {
    display: flex;
    flex-direction: column;
    gap: .25em;
    align-items: center;
  }
  #features h2 {
    padding: 0 6vw;
  }
  #features .inner {
    padding: 0;
  }
  #features .wrap-features {
    padding: 9vw 0;
    gap: 6vw;
  }
  #features .wrap-features > section .block {
    align-items: flex-end;
  }
  #features .wrap-features > section .block h3 {
    font-size: 4.5vw;
    gap: 3vw;
    display: flex;
    padding: 10% 0vw 0 22%;
    width: 100%;
    align-items: flex-end;
  }
  #features .wrap-features > section .block h3 > img {
    width: 61%;
    margin-right: 20%;
  }
  #features .wrap-features > section .block h3 span {
    background: #fff;
    padding: .25em 1em;
    margin: 0;
    display: inline-block;
    width: auto;
  }
  #features .wrap-features > section.feature3 .block h3 {
    padding-top: 43vw;
  }
  #features .wrap-features > section.feature3:after {
    width: 90%;
    height: auto;
    padding-top: 100%;
    background: url(../img/image-features03.jpeg) no-repeat -49vw 0;
    background-size: cover;
  }
  #features .wrap-features > section .text {
    width: 80%;
    padding: 6vw;
    margin: 0 4vw 0 auto;
  }
  #features .wrap-features > section .text br {
    display: none;
  }
  #features .wrap-features > section:after {
    width: 90%;
  }
  #features .wrap-features > section .block {
    gap: 6vw;
    margin-top: 10vw;
  }
  #features .wrap-features > section .award {
    gap: 2vw;
    margin-top: 1em;
  }
  #features .wrap-features > section .award > h4 {
    font-size: 4vw;
    padding-left: 2vw;
  }
  #features .wrap-features > section .award > div {
    height: 30vw;
    width: 100%;
  }
  #features .wrap-features > section:nth-of-type(even) .block {
    align-content: flex-start;
    align-items: flex-start;
  }
  #features .wrap-features > section:nth-of-type(even) .block h3 {
    font-size: 4.5vw;
    gap: 3vw;
    display: flex;
    padding: 10% 32% 0 0;
    width: 100%;
    align-items: flex-start;
  }
  #features .wrap-features > section:nth-of-type(even) .block h3 img {
    margin-left: 20%;
  }
  #features .wrap-features > section:nth-of-type(even) .text { 
    margin-left: 4vw;
  }
  #suggest .inner .first {
    grid-template-columns: 40% auto;
  }
  #suggest .inner .first .subhead {
    padding: 6vw;
    padding-bottom: 24vw;
  }
  #suggest .inner .first h2 {
    font-size: 1em;
    padding: 3vw;
  }
  #suggest .inner .first .text {
    padding: 2em;
    font-size: 1em;
  }
  #suggest .inner .first .text br {
    display: none;
  }
  #suggest .inner .second {
    grid-template-rows: auto 40vw;
    grid-template-columns: 65% auto;
    gap: 3vw;
  }
  #suggest .inner .second .price {
    padding: 6vw 3vw;
    font-size: 2vw;
    gap: 6vw;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  #suggest .inner .second .price .carport p{
    font-size: 3.2vw;
  }
  #suggest .inner .second .price .amount {
    font-size: 12vw;
  }
  #suggest .inner .second .price dd ul {
    font-size: 3.2vw;
  }
  #suggest .inner .second .photo1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;

  }
  #suggest .inner .second .photo2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  #suggest .makers h3 {
    font-size: 4vw;
  }
  #suggest .makers ul {
    gap: 6vw 2vw;
  }
  #suggest .makers ul li {
    height: 6vw;
  }
  #construction .inner {
    gap: 6vw;
  }
  #construction h2 {
    font-size: 4vw;
    padding: 6vw 0;
  }
  #construction .grid-block {
    gap: 6vw;
  }

  #construction .grid-block section > img {
    height: 41vw;
  }
  #customer .inner > div section {
    padding: 6vw;
  }
  #customer .inner > div section h3 {
    font-size: 3vw;
  }
  #customer .inner > div section p.detail + p {
    width: 60%;
  }
  #guide h2 {
    font-size: 6vw;
  }
  #guide h3 {
    font-size: 4vw;
  }
  #guide ol li,
  #guide ol li:nth-of-type(even) {
    padding: 6vw 0;
    flex-direction: column
  }
  #guide ol li > img {
    max-width: 100%;
    width: 100%;
    height: 35vw;
    min-height: unset;
  }
  #guide ol li .text {
    width: 100%;
    padding: 3vw;
  }
  #guide ol li .text p br {
    display: none;
  }
  #qa .inner {
    gap: 6vw;
  }
  #qa .inner dl {
    gap: 6vw;
    padding: 6vw;
  }
  #qa .inner dl > div {
    gap: 3vw;
  }
  #qa .inner dt, #qa .inner dd {
    padding: 3vw;
    gap: 1.5vw;
  }
  #qa .inner dt, #qa .inner dd {
    grid-template-columns: 5vw 1fr;
  }
  #qa .inner dt:before, #qa .inner dd:before {
    width: 5vw;
    height: 5vw;
  }
  #pr1 .inner {
    gap: 6vw;
  }
  #pr1 h2 {
    font-size: 5vw;
    padding: 3vw;
  }
  #pr1:after {
    width: 55%;
    height: 70vw;
    background-size: cover;
  }
  #pr1 section {
    padding: 3vw;
  }
  #event .inner {
    gap: 6vw;
  }
  #event .inner > div {
    gap: 6vw;
  }
  #event .inner .highlight{
    padding: 9vw;
    gap: 9vw;
  }
  #event .inner .soudankai{
    padding: 6vw;
    gap: 6vw;
    font-size: 3vw;
  }
  #event .inner .soudankai h3 {
    font-size: 4.5vw;
  }
  #pr2 .inner{
    gap: 6vw;
  }
  #pr2 h2 {
    font-size: 5.6vw;
  }
  #pr2 .gallery {
    grid-template-rows: 40vw;
  }
  #pr2 .inner > dl {
    gap: 6vw;
    padding: 6vw;
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 768px) {

  body > article {
    font-size: 4vw;
  }

  #suggest .inner .first h2 {
    font-size: 2.75vw;
  }

  #suggest .inner .first .photo {
    grid-column: 1/3;
    grid-row: 2/3;
    width: 100%;
    aspect-ratio: 2.618 / 1;
  }

  #suggest .inner .first .text {
    grid-column: 1/3;
    grid-row: 3/4;
    padding: 2em;
    font-size: 1em;
  }

  #suggest .inner .first .text p br {
    display: none;
  }

  #questions .inner>div:last-of-type p span{
    font-size: 1em;
  }

  #construction .grid-block {
    grid-template-columns: 1fr;
  }
  #construction .grid-block section > img {
    height: 68vw;
  }
  #construction .grid-block section h3 {
    font-size: 1.5em;
  }
  #construction .grid-block section p {
    font-size: 1em;
  }
  #customer .inner > div section {
    flex-direction: column;
  }
  #customer .inner > div section .image {
    width: 100%;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  
  #customer .inner > div section .image > div {
    height: 100%;
    width: 100%;
    aspect-ratio: 1.618 / 1;
  }
  #customer .inner > div section .text p:not(.detail) br{
    display: none;
  }
  #customer .inner > div section h3 {
    font-size: 1em;
  }
  #guide h3 {
    font-size: 1.5em;
  }
  #contact label {
    font-size: 16px;
  }
  #contact input,
  #contact textarea {
    font-size: 16px;
    border-radius: 4px;
    margin-top: .5em;
  }
  #contact form .col-span {
    gap: .5em;
  }
  #contact form > div {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #contact label.error {
    grid-row: auto;
    grid-column: auto;
  }
  #thanks .inner {
    padding: 10vw 5vw;
  }
  #thanks h2 {
    font-size: 6vw;
  }
  #thanks .text p {
    font-size: 4vw;
  }
}