@charset "utf-8";
@import url("root.css");

/***************************************
------------- TOP COMMON -------------
***************************************/
.top_ttl {
  font-size: clamp(3.3rem, 3vw, 4.8rem);
  font-weight: 500;
  color: #555555;
  margin-bottom: 0.4em;
  line-height: 1.2;
}

.top_ttl .sub {
  font-size: 1.8rem;
  color: var(--base-color01);
  font-weight: 600;
  margin-left: 1em;
}

.top_ttl .color {
  color: var(--base-color01);
  font-size: 1em;
  line-height: 1.2;
}

.button {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background: var(--base-color01);
  max-width: 400px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  width: 15px;
  height: 8px;
  border: 8px solid transparent;
  border-left: 15px solid #fff;
  transition: 0.2s;
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  right: 10px;
}

.button.small {
  font-size: 1.8rem;
  padding: 0.2em;
  max-width: 200px;
  width: 100%;
}

.button.small:after {
  right: 8px;
  width: 10px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}

.button.small:hover::after {
  right: 5px;
}

.button.color {
  background: var(--base-color03);
}

.text-center {
  text-align: center;
}

/* PC */
@media screen and (min-width: 1025px) {
  .tablet-only {
    display: none;
  }
}

/* TBのみ */
@media (max-width: 1024px) and (min-width: 600px) {
}

/* ~SP */
@media screen and (min-width: 600px) {
}

/* SP */
@media screen and (max-width: 599px) {
  .button {
    font-size: 2rem;
    max-width: 300px;
  }

  .button::after {
    width: 10px;
    height: 5px;
    border: 5px solid transparent;
    border-left: 10px solid #fff;
    transition: 0.2s;
  }

  .sp-text-center {
    text-align: center;
  }

  .tablet-only {
    display: none;
  }
}

/***************************************
------------- TOP MAIN IMG -------------
***************************************/

#mv {
  width: min(100%, 1200px);
  height: auto;
  margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
  #mv {
    margin-top: 80px;
  }
}

/***************************************
------------- NEWS ------------
***************************************/
.sec_news {
  padding: 45px 0;
}

.sec_news .button.small {
  max-width: 100%;
  width: 200px;
}

.sec_news .border_box {
  border: solid 1px #d4d4d4;
  padding: min(4%, 20px);
  height: 275px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sec_news .border_box::-webkit-scrollbar {
  display: none;
}

.sec_news h3 {
  color: var(--base-color01);
  font-weight: bold;
  border-bottom: solid 2px var(--base-color01);
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 0.5em;
}

.sec_news .price_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec_news .price_list li.gold {
  color: #dba800;
}

.sec_news .price_list li.pt {
  color: #4267c7;
}

.sec_news .price_list li:not(:last-child) {
  border-bottom: solid 2px #f5f0ff;
}

.sec_news .price_list li .left {
  display: flex;
  align-items: center;
  flex: auto;
}

.sec_news .price_list li .icon {
  padding: min(5%, 20px) min(5%, 20px) min(5%, 20px) min(5%, 15px);
}

.sec_news .price_list li .name {
  font-size: 2.8rem;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.3vw, 2.8rem);
}

.sec_news .price_list li .price {
  font-size: clamp(2rem, 2.5vw, 3.6rem);
  color: #db0000;
  font-weight: 500;
}

.sec_news .price_list li .yen {
  color: #333333;
  font-size: 0.5em;
}

.sec_news .news dl {
  border-bottom: solid 2px #f5f0ff;
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.sec_news .news dl dt {
  color: #100169;
}

.sec_news .news dl dt::before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  background: url(../img/cal_navy.svg) no-repeat center / contain;
  width: 20px;
  height: 17px;
  margin-bottom: -2px;
}

/* PC以外 */
@media (max-width: 1024px) {
  .sec_news .button.small {
    max-width: 100%;
    width: 200px;
  }
}

/* TBのみ */
@media (max-width: 1024px) and (min-width: 600px) {
  .sec_news .top_ttl .sub {
    margin-left: 0;
    display: block;
  }

  .sec_news .button.small {
    width: 160px;
    font-size: 1.6rem;
  }
}

/* TBまで */
@media screen and (min-width: 600px) {
  .sec_news .ttl_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_news {
    padding: 30px 0;
  }

  .sec_news .border_box {
    margin-top: 20px;
    height: 220px;
  }

  .sec_news .price_list li .name {
    font-size: 2.4rem;
  }

  .sec_news .price_list li .price {
    font-size: 2.6rem;
  }
}

/***************************************
------------- ABOUT US ------------
***************************************/
.sec_about {
  padding: 45px 0 0;
}

.sec_about .con_icon {
  margin-bottom: 20px;
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_about {
    padding: 0 0 30px 0;
  }
  .sec_about .con_icon {
    text-align: center;
  }
  .sec_about .con_icon img {
    max-width: 80%;
    margin: 0 auto;
  }
}

/***************************************
------------- POINT ------------
***************************************/

.sec_point {
  padding: 20px 0 0;
  margin-top: 90px;
  position: relative;
}

.sec_point .bg_wh {
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.sec_point .bg_wh .icon {
  text-align: center;
  height: 130px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

.sec_point .ttl {
  background: var(--base-color01);
}

.sec_point .bg_wh .ttl h3 {
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  text-align: center;
}

.sec_point .bg_wh .ttl h3 .color {
  font-size: 1em;
  color: var(--base-color03);
}

.sec_point .bg_wh p {
  padding: 0.8em 1em;
  margin: 0;
  font-weight: bold;
  font-size: 1.8rem;
}

/* TBまで */
@media screen and (min-width: 600px) {
  .sec_point .top_ttl {
    margin-bottom: 1em;
  }

  .sec_point .con_txt {
    width: calc(860 / 1200 * 100%);
  }

  .sec_point .con_txt .flex_wrap {
    gap: 30px calc(40 / 1200 * 100%);
  }

  .sec_point::before {
    content: "";
    display: block;
    position: absolute;
    width: 52%;
    height: 80%;
    top: 0;
    left: 0;
    margin: auto;
    background: var(--base-color02);
    z-index: -1;
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_point {
    padding: 30px 0 30px 0;
    margin: 0;
    background: var(--base-color02);
  }

  .sec_point .bg_wh .ttl h3 {
    font-size: 2.4rem;
  }
}

/***************************************
------------- PURCHASE ------------
***************************************/

.sec_purchase {
  padding: 20px 0 0;
  margin-top: 90px;
  position: relative;
}

.sec_purchase .bg_wh {
  background: #fff;
  padding: 2% 3%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.sec_purchase .bg_wh h3 {
  font-weight: bold;
  font-size: 2.4rem;
  border-bottom: solid 2px var(--base-color01);
  color: var(--base-color01);
  padding-bottom: 0.2em;
  margin-bottom: 0.7em;
}

.sec_purchase .bg_wh h3:not(:first-child) {
  margin-top: 1em;
}

.sec_purchase .bg_wh h3 .sub {
  color: #fff;
  margin-right: 0.5em;
  width: 175px;
  font-size: 1em;
  background: var(--base-color03);
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}

.sec_purchase .bg_wh p {
  margin: 0;
  font-weight: 500;
  font-size: 1.8rem;
}

/* TBまで */
@media screen and (min-width: 600px) {
  .sec_purchase .top_ttl {
    margin-bottom: 0.8em;
  }

  .sec_purchase .con_txt {
    width: calc(820 / 1200 * 100%);
  }

  .sec_purchase::before {
    content: "";
    display: block;
    position: absolute;
    width: 52%;
    height: 80%;
    top: 0;
    right: 0;
    margin: auto;
    background: var(--base-color02);
    z-index: -1;
  }

  .sec_purchase .btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 20px 0 30px;
  }

  .sec_purchase .btns li {
    width: calc((100% - 20px) / 2);
  }

  .sec_purchase .button {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_purchase {
    padding: 30px 0 30px 0;
    margin: 0;
    background: var(--base-color02);
  }

  .sec_purchase .bg_wh h3 .sub {
    width: 150px;
  }

  .sec_purchase .btns {
    margin: 20px 0 30px;
  }

  .sec_purchase .btns li + li {
    margin-top: 10px;
  }
}

/***************************************
------------- BNR ------------
***************************************/
.sec_bnr {
  padding: 20px 0 0;
}

.sec_bnr a {
  display: block;
}

.sec_bnr a + a {
  margin-top: 50px;
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_bnr {
    padding: 30px 0 0;
  }

  .sec_bnr a + a {
    margin-top: 20px;
  }
}

/***************************************
------------- Item list ------------
***************************************/
.sec_item {
  margin-top: 90px;
}

.sec_item .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc(30 / 1200 * 100%);
  margin-bottom: 60px;
}

.sec_item .item_list li {
  width: calc((100% - (30 / 1200 * 100%) * 2) / 3);
}

.sec_item .item_list li .bg {
  background: var(--base-color02);
  text-align: right;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 8px;
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_item {
    margin-top: 40px;
  }

  .sec_item .item_list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .sec_item .item_list li {
    width: calc((100% - 10px) / 2);
  }

  .sec_item .item_list li .bg {
    padding: 2px 5px;
  }
}

/***************************************
------------- achievement ------------
***************************************/
.sec_achievement {
  margin-top: 90px;
}

.sec_achievement .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px calc(20 / 1200 * 100%);
  margin-bottom: 60px;
}

.sec_achievement .item_list li {
  width: calc((100% - (20 / 1200 * 100%) * 3) / 4);
}

.sec_achievement .item_list li .bg {
  padding: 0 15px 15px 15px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 15px,
    var(--base-color02) 15px,
    var(--base-color02) 100%
  );
}
.sec_achievement .item_list li .bg a {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 200px;
}
.sec_achievement .item_list li .bg a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  font-family: "object-fit: cover;";
}
.sec_achievement .item_list li p,
.sec_achievement .item_list li .text {
  margin: 0.5em 0;
  font-size: 1.8rem;
}

.sec_achievement .item_list li .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
}

.sec_achievement .item_list li .date {
  color: #555555;
  text-align: right;
  margin: 0;
}

.sec_achievement .item_list li .date::before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  background: url(../img/cal_bk.svg) no-repeat center / contain;
  width: 20px;
  height: 17px;
  margin-bottom: -2px;
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_achievement {
    margin-top: 40px;
  }

  .sec_achievement .item_list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .sec_achievement .item_list li {
    width: calc((100% - 10px) / 2);
  }

  .sec_achievement .item_list li .bg {
    padding: 0 8px 8px 8px;
  }
  .sec_achievement .item_list li .bg a {
    padding-top: 80%;
  }
}

/***************************************
------------- FAQ ------------
***************************************/
.sec_faq {
  padding: 20px 0 0;
  margin-top: 90px;
  position: relative;
}

.sec_faq .qa_box {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 0px;
  margin-bottom: 20px;
}

.sec_faq .qa_box article {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  background-color: transparent;
  width: 96%;
  margin: 0 auto 1rem;
}

.sec_faq .qa_box article:last-child::after {
  content: "";
}

.sec_faq .qa_box dl {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.sec_faq .qa_box dt {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--base-color01);
  line-height: 110%;
  padding: 0rem 2.5rem 0 0px;
  margin-bottom: 0rem;
  transition: all 0.5s ease;
  line-height: 2;
}

.sec_faq .qa_box dt {
  font-weight: bold !important;
}

.sec_faq .qa_box dt span::before,
.sec_faq .qa_box dt span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: var(--base-color01);
}

.sec_faq .qa_box dt span::before {
  top: 48%;
  right: 20px;
  transform: rotate(0deg);
}

.sec_faq .qa_box dt span::after {
  top: 48%;
  right: 20px;
  transform: rotate(90deg);
}

.sec_faq .qa_box dt.close span::before {
  transform: rotate(45deg);
}

.sec_faq .qa_box dt.close span::after {
  transform: rotate(-45deg);
}

.sec_faq .qa_box dt::before {
  content: "Q";
  color: var(--base-color01);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 10px;
  margin-top: -6px;
}

.sec_faq .qa_box dd div::before {
  content: "A";
  color: var(--base-color03);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 10px;
  margin-top: -6px;
}

.sec_faq .qa_box dd.box {
  display: none;
  margin: 15px 0 0 0;
  padding: 15px 15px 0 0;
  border-top: 2px solid var(--base-color01);
}

.sec_faq .qa_box dd div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: bold;
  font-size: 1.8rem;
}

.qa_txt_links {
  padding-top: 3px;
}

.qa_txt_links a {
  background-color: var(--sub-color03);
  padding: 3px;
}

.qa_txt_links a::after {
  content: "》";
  margin-left: 3px;
}

/* TBまで */
@media screen and (min-width: 600px) {
  .sec_faq .top_ttl {
    margin-bottom: 0.8em;
  }

  .sec_faq .con_qa {
    width: calc(820 / 1200 * 100%);
  }

  .sec_faq::before {
    content: "";
    display: block;
    position: absolute;
    width: 52%;
    height: 80%;
    top: 0;
    left: 0;
    margin: auto;
    background: var(--base-color02);
    z-index: -1;
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_faq {
    padding: 30px 0 30px 0;
    margin: 20px 0 0 0;
    background: var(--base-color02);
  }

  .sec_faq .qa_box dl {
    padding: 10px 10px;
  }

  .sec_faq .qa_box dt {
    font-size: 2rem;
  }

  .sec_faq .qa_box dt::before,
  .sec_faq .qa_box dd div::before {
    font-size: 3.5rem;
  }

  .sec_faq .qa_box dt span::before {
    right: 10px;
  }

  .sec_faq .qa_box dt span::after {
    right: 10px;
  }
}

/***************************************
------------- column ------------
***************************************/

.sec_column {
  margin-top: 90px;
}

.sec_column .button.small {
  max-width: 100%;
  width: 200px;
}

.sec_column .border_box {
  max-height: 300px;
  border: solid 1px #d4d4d4;
  padding: 23px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sec_column .border_box::-webkit-scrollbar {
  display: none;
}

.sec_column .column_wrap {
  display: flex;
  justify-content: space-between;
}

.sec_column .border_box a {
  display: block;
}

.sec_column a + a {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 2px #f5f0ff;
}

.sec_column .thumb {
  width: calc(120 / 1160 * 100%);
}

.sec_column .text {
  width: calc(1010 / 1160 * 100%);
}

.sec_column .text p {
  font-size: 1.8rem;
  margin: 0;
}

.sec_column .date {
  color: #100169;
  margin: 0;
}

.sec_column .date::before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  background: url(../img/cal_navy.svg) no-repeat center / contain;
  width: 20px;
  height: 17px;
  margin-bottom: -2px;
}

/* PC以外 */
@media (max-width: 1024px) {
  .sec_column .button.small {
    max-width: 100%;
    width: 200px;
  }
}

/* TBのみ */
@media (max-width: 1024px) and (min-width: 600px) {
  .sec_column .button.small {
    width: 160px;
    font-size: 1.6rem;
  }
}

/* TBまで */
@media screen and (min-width: 600px) {
  .sec_column .ttl_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .sec_column {
    margin-top: 40px;
  }

  .sec_column .border_box {
    margin-top: 20px;
  }

  .sec_column .thumb {
    width: calc(180 / 600 * 100%);
  }

  .sec_column .text {
    width: calc(400 / 600 * 100%);
  }
}

/***************************************
------------- MARKET　PRICE ------------
***************************************/
#market .market_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid var(--base-color01);
  background: #fff;
}

.market_txt {
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.market_txt p {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market_txt p span {
  display: block;
  padding: 5px 10px 7px;
  font-size: 0.85em;
  text-align: center;
  color: #fff;
  background: #ff772f;
  font-feature-settings: "palt";
  line-height: 1;
  margin-left: 5px;
}

.market_txt p.setsumei {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: normal;
}

#market .market_wrap dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: calc(100% / 3);
  align-content: center;
  padding: 20px 5px;
}

#market .market_wrap dl:nth-of-type(odd) {
  background: #fff;
}

#market .market_wrap dl:nth-of-type(even) {
  background: #eee;
}

#market .market_wrap dl dt {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#market .market_wrap dl dd {
  width: 100%;
  height: auto;
  margin-top: 15px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#market .market_wrap dl:nth-of-type(1) dt::before {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 auto 5px;
  background: url(../img/ingot01.png) no-repeat;
  background-size: contain;
  background-position: center;
}

#market .market_wrap dl:nth-of-type(2) dt::before {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 auto 5px;
  background: url(../img/ingot02.png) no-repeat;
  background-size: contain;
  background-position: center;
}

#market .market_wrap dl:nth-of-type(3) dt::before {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 auto 5px;
  background: url(../img/ingot03.png) no-repeat;
  background-size: contain;
  background-position: center;
}

#market .market_wrap dl:nth-of-type(4) dt::before {
  content: "";
  display: block;
  width: 40px;
  height: 30px;
  margin: 0 auto 5px;
  background: url(../img/ingot04.png) no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .market_txt {
    width: 90%;
    margin-bottom: 20px;
  }

  .market_txt p {
    font-size: min(4.5vw, 2.4rem);
    flex-wrap: wrap;
  }

  .market_txt p span {
    width: 100%;
    margin-top: 5px;
  }

  #market .market_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (max-width: 599px) {
  #market .market_wrap dl {
    width: 100%;
    padding: 10px;
  }

  #market .market_wrap dl dt {
    width: 60%;
    flex-direction: row;
    justify-content: flex-start;
  }

  #market .market_wrap dl dd {
    width: 40%;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  #market .market_wrap dl:nth-of-type(1) dt::before,
  #market .market_wrap dl dt:before {
    font-size: 1.6rem;
  }

  #market .market_wrap dl:nth-of-type(1) dt::before,
  #market .market_wrap dl:nth-of-type(2) dt::before,
  #market .market_wrap dl:nth-of-type(3) dt::before {
    width: 30px;
    margin: 0 10px 0 0;
  }
}

/***************************************
-------------- NEWS --------------
***************************************/

#news .news_wrap {
  width: 100%;
  height: 160px;
  overflow: scroll;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid var(--base-color01);
  padding: 15px;
  background: #fff;
}

#news .news_wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: flex-start;
}

#news .news_wrap dl dt {
  width: 100%;
}

#news .news_wrap dl dd {
  width: 100%;
}

#news .news_wrap dl:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #000;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .news_wrap dl dt,
  .news_wrap dl dd {
    font-size: 1.6rem;
  }
}

/***************************************
--------------- GREETING ---------------
***************************************/

#greeting {
  width: 100%;
  padding: 0 30px 30px;
  margin-top: 80px;
  margin-bottom: 50px;
  background: #fff url(../img/greeting_bg.jpg) no-repeat;
  background-position: top center;
  background-size: cover;
  border: 10px solid var(--base-color01);
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-column-gap: 30px;
  grid-template-areas:
    "img ttl"
    "img txt ";
}

.greeting_ttl {
  grid-area: ttl;
}

.greeting_ttl img {
  margin-top: -15px;
}

.greeting_img {
  grid-area: img;
}

.greeting_img img {
  margin-top: -30px;
}

.greeting_txt {
  grid-area: txt;
}

@media screen and (max-width: 1023px) {
  #greeting {
    padding: 0 1.27vw 1.27vw;
    border: min(1.27vw, 10px) solid var(--base-color01);
    display: grid;
    grid-template-columns: 35% 1fr;
    grid-column-gap: 1.27vw;
  }
}

@media screen and (max-width: 768px) {
  #greeting {
    display: grid;
    grid-template-columns: 20% 1fr;
    grid-column-gap: 1.27vw;
    grid-template-areas:
      "img ttl"
      "txt txt";
  }

  .greeting_txt p {
    width: 95%;
    margin: 0 auto 2.5%;
  }
}

/***************************************
---------------- ACCESS ----------------
***************************************/

#access {
  background: #fff;
  border: 2px solid var(--base-color01);
}

#access .subtitle {
  width: 90%;
  margin: 30px auto 15px;
  color: var(--base-color01);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 5px 10px;
  border-left: 10px solid var(--base-color01);
  border-bottom: 2px solid var(--base-color01);
}

#access .access_wrap {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  counter-reset: list-number;
}

#access .access_box {
  width: 29%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
}

#access .access_box:nth-of-type(1)::after,
#access .access_box:nth-of-type(2)::after,
#access .access_box:nth-of-type(4)::after,
#access .access_box:nth-of-type(5)::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -20%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 8%;
  height: 16%;
  background: url(../img/arrow_bl.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

#access .access_txt {
  margin: 10px 0;
  color: var(--base-color01);
  display: flex;
  align-items: flex-start;
  text-align: justify;
}

#access .access_txt span {
  font-size: 1.6rem;
  width: calc(100% - 50px);
}

#access .access_txt::before {
  width: 40px;
  height: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-color01);
  counter-increment: list-number;
  content: counter(list-number);
  background: #ffcc00;
}

@media screen and (max-width: 768px) {
  #access .subtitle {
    font-size: min(4.5vw, 2.5rem);
  }

  #access .access_box {
    width: 45%;
  }

  #access .access_box:nth-of-type(even)::after {
    content: none;
  }

  #access .access_box:nth-of-type(odd)::after {
    content: "";
    position: absolute;
    top: 40%;
    right: -20%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 8%;
    height: 16%;
    background: url(../img/arrow_bl.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
}

@media screen and (max-width: 414px) {
  #access .access_box {
    width: 100%;
  }

  #access .access_box::after {
    content: none !important;
  }
}

/***************************************
-------------- ITEM LIST ---------------
***************************************/
#item_list {
  background: #7d82bd;
}

.item_list_bg {
  background: url(../img/item_bgBottom.jpg) no-repeat;
  background-position: bottom;
  background-size: contain;
  padding: 0 0 min(3.5%, 30px);
}

#item_list .list_wrap {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: min(3.5%, 30px) min(3.5%, 30px) 0;
  background: url(../img/item_bgTop.jpg) no-repeat;
  background-size: contain;
  background-position: top;
}

#item_list .list_wrap li {
  width: 47.5%;
  margin-bottom: calc(8% / 3);
}

@media screen and (max-width: 768px) {
  #item_list .list_wrap li {
    width: 48.5%;
  }
}

@media screen and (max-width: 414px) {
  #item_list .list_wrap li {
    width: 100%;
  }
}

/***************************************
-------------- ACHIEVEMENT -------------
***************************************/
#achievement {
  background: #fff;
  border: 2px solid var(--base-color01);
  padding-top: 5%;
  padding-bottom: 5%;
}

#achievement > p {
  margin-top: 30px;
  margin-bottom: 30px;
}

#achievement .result_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

#achievement .result_wrap .result_box {
  width: 31%;
  margin-bottom: 3.5%;
}

#achievement .result_wrap .result_box:not(:nth-of-type(3n)) {
  margin-right: 3.5%;
}

#achievement .result_txt .date {
  font-size: 1.4rem;
  line-height: 1;
  margin: 5px auto;
}

#achievement .result_txt .date:before {
  content: "";
  display: inline-block;
  background-image: url(../img/cal_bk.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

#achievement .result_txt .category {
  width: 100%;
  font-size: 1.6rem;
  color: #fff;
  background: var(--base-color01);
  margin-bottom: 5px;
  padding: 5px;
  line-height: 1;
  text-align: center;
}

#achievement .result_txt .text {
  font-size: 1.6rem;
  height: calc(1em * 1.7 * 3);
  text-align: justify;
  overflow-y: scroll;
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  #achievement .result_wrap .result_box {
    width: 49%;
  }

  #achievement .result_wrap .result_box:not(:nth-of-type(3n)) {
    margin-right: 0;
  }

  #achievement .result_wrap .result_box:not(:nth-of-type(2n)) {
    margin-right: 2%;
  }
}

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