@charset "UTF-8";


/* ==== color ========================== */
:root {
  --color-bg: #F7F6F4;
  --color-black: #333333;
  --color-white: #ffffff;

  --color-brown: #625134;
  --color-brown-bg: #B6B0A5;


  --noto: "Noto Sans JP", sans-serif;
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: var(--noto);
  background: var(--color-bg);
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .075em;
  line-height: 1.75;
}


a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

p {
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}



@media screen and (max-width:767px) {
  body {
    font-size: 1.4rem;
  }


}

/*================================================
 *  section 
 ================================================*/

h2.hd {
  font-size: 1.8rem;
  color: var(--color-brown);
  font-weight: 500;
}

h2.hd:has(i) {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}

section {
  position: relative;
}

.wrap {
  max-width: 100rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}



.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_aspect {
  background-image: url(../images/icon_aspect.png);
  width: 2.4rem;
  height: 2.4rem;
}

.icon_w {
  background-image: url(../images/icon_w.png);
  width: 2.4rem;
  height: 2.4rem;
}

.icon_h {
  background-image: url(../images/icon_h.png);
  width: 2.4rem;
  height: 2.4rem;
}

/*================================================
 *  header
 ================================================*/

header {
  padding: 11rem 0 6rem;
  background: var(--color-brown);
  margin-bottom: 10rem;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-white);
}

header h1 .icon_aspect {
  width: 4.2rem;
  height: 4.2rem;
  margin-right: 0.5rem;
  background-image: url(../images/icon_aspect-w.png);
}

header p {
  font-size: 1.8rem;
  margin-top: 3rem;
  color: var(--color-white);
}

@media screen and (max-width:767px) {
  .wrap {
    max-width: 100rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  header p {
    font-size: 1.6rem;
  }
}

.advertisement {
  margin-bottom: 6rem;
}

.advertisement a {
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.advertisement img {
  width: auto;
  height: auto;
}

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

/*================================================
 *  countSec
 ================================================*/

.countSec_box {
  display: grid;
  gap: 0 4rem;
  grid-template-columns: repeat(2, 1fr);
}

.countSec_item>div {
  display: flex;
  align-items: end;
  gap: 1rem;
}

.countSec_item input {
  display: inline-block;
  width: 100%;
  background: var(--color-white);
  border: 1px solid #e0dcd4;
  border-radius: 0.3rem;
  height: 6rem;
  padding: 1rem 1.6rem;
  margin-top: 1rem;
}

::placeholder {
  color: #E3E3E3;
}

.resultSec {
  padding-top: 6rem;
}

.resultSec table {
  width: calc(100% + 2rem);
  position: relative;
  left: -1rem;
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 10px;
  overflow-wrap: break-word;
}

.resultSec table th,
.resultSec table td {
  width: 40%;
  border-radius: 0.3rem;
  vertical-align: middle;
  text-align: center;
  padding: 1.6rem 0.8rem;
}

.resultSec table th:first-of-type,
.resultSec table td:first-of-type {
  width: 20%;
}

.resultSec table th {
  background: var(--color-brown-bg);
  color: var(--color-white);
  font-weight: 600;
}

.resultSec table td:first-of-type {
  font-size: 1.8rem;
}

.resultSec table td {
  background: var(--color-white);
}

.resultSec table td span:not(.result) {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}

.resultSec table td .result {
  font-size: 2rem;
}

@media screen and (max-width:767px) {
  .countSec_box {
    gap: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .resultSec table {
    min-width: 480px;
  }

  .resultSec table td:first-of-type {
    font-size: 1.6rem;
  }

  .resultSec table th,
  .resultSec table td {
    padding: 1.2rem 0.2rem;
  }

  .resultSec table th {
    font-size: 1.2rem;
  }
}

/*================================================
 *  omakeSec
 ================================================*/

#omakeSec .wrap {
  border-top: 1px solid #e0dcd4;
  padding-top: 8rem;
  margin-top: 8rem;
  border-top: 1px solid #e0dcd4;
}

#omakeSec h2 span {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 2em;
}

#omakeSec h3 {
  margin-top: 2rem;
}

.hiritsu_box table {
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 10px;
  overflow-wrap: break-word;
  font-size: 1.4rem;
  width: calc(100% + 2rem);
  position: relative;
  left: -1rem;
}

.hiritsu_box table th,
.hiritsu_box table td {
  width: 20%;
  border-radius: 0.3rem;
  vertical-align: middle;
  text-align: center;
  padding: 1.6rem 0.8rem;
  background: var(--color-white);
}


.hiritsu_box table th:last-of-type,
.hiritsu_box table td:last-of-type {
  width: 60%;
  padding: 1.6rem 2rem;
}


.hiritsu_box table td:last-of-type {
  text-align: left;
}



.youto_box {
  margin-top: 6rem;
}

.youto_box-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

.youto_item {
  background: var(--color-white);
  border-radius: 0.3rem;
  padding: 2rem 1.6rem;
}

#omakeSec .youto_item h3 {
  color: var(--color-brown);
  border-bottom: 2px dotted #e0dcd4;
  padding-bottom: 0.6rem;
  margin-bottom: 1.6rem;
  font-weight: 500;
  margin-top: 0;
}

.youto_item h3 small {
  font-size: 1.4rem;
}

.youto_item li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.youto_item li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.notes {
  line-height: 1.5;
  margin-top: 6rem;
  text-align: right;
}

.notes small {
  font-size: 1.2rem;
}

@media screen and (max-width:767px) {
  #omakeSec h2 {
    flex-wrap: wrap;
  }

  #omakeSec h2 span {
    width: 100%;
    margin: 0;
  }

  .youto_box-inner {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .youto_item {
    padding: 1.6rem 1rem;
  }

  .hiritsu_box table {
    min-width: 600px;
  }

  .notes {
    text-align: left;
  }
}



/*================================================
 *  footer / フッター
 ================================================*/
footer {
  padding: 4rem 0 1rem;
  background: var(--color-brown);
  margin-top: 10rem;
  text-align: center;
  font-size: 12px;
}

footer a {
  color: var(--color-white);
  margin: 0 1rem;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: var(--color-white);
  margin-top: 2rem;
}

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

/*================================================
 *  policy
 ================================================*/
#policy h3,
#contact h3 {
  margin-top: 4rem;
  color: var(--color-brown);
  font-weight: 500;
}

#contact .wrap {
  border-top: 1px solid #e0dcd4;
  padding-top: 8rem;
  margin-top: 8rem;
  border-top: 1px solid #e0dcd4;
}

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

  #policy h3,
  #contact h3 {
    margin-top: 2rem;
  }

  #contact .marginB--40 {
    margin-bottom: 20px;
  }
}