@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
  background-color: #ffaa95;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Segoe UI", Frutige, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
:root {
  --vw: 1vw;
  --pri-color: #F98271;
  --pri-gra: linear-gradient(90deg, #FF965A 0%, #FF8370 100%);
  --sec-gra: linear-gradient(90deg, #FF965A -15.43%, #FF8370 -15.29%);
}


/* --------------- .bg-gra --------------- */
.bg-gra {
  background-image: var(--pri-gra);
}
.pri-color {
  color: var(--pri-color);
}




/* --------------- .wrapper --------------- */
.wrapper {
  position: relative;
  max-width: 1360px;
  margin-inline: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 959px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 519px) {
}
/* ---------------------------------------------------------
 * #pc_left
** --------------------------------------------------------- */
#pc_left {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 845px;
  width: calc(100% - 505px);
  height: 100dvh;
  padding-top: 40px;
  padding-bottom: 20px;
  overflow: auto;
  text-align: center;
}
#pc_left h1 {
  display: inline-block;
  margin-top: auto;
  padding: 10px;
}
#pc_left h1 .desc {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  text-align: left;
}
#pc_left h1 img {
}
#pc_left h1 .area {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid;
  color: var(--pri-color);
  font-weight: bold;
}
#pc_left .search {
  margin-top: 30px;
}
#pc_left .search .content {
  display: flex;
  max-width: 100%;
  width: 400px;
}
#pc_left .search input {
  width: calc(100% - 80px);
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px 0 0 5px;
  text-align: left;
}
#pc_left .search button {
  width: 80px;
  border: 1px solid;
  background-color: var(--pri-color);
  border-radius: 0 5px 5px 0;
  color: #fff;
}
#pc_left .line_btn {
  max-width: 100%;
  width: 400px;
  margin-top: 30px;
}
#pc_left .line_btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #33c855;
  border: 1px solid;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}
#pc_left .line_btn a img {
  width: 27px;
  margin-right: 10px;
}
#pc_left .line_btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  display: block;
  width: 11px;
  height: 11px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
#pc_left .menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
}
#pc_left .menu li {
}
#pc_left .menu li a {
  color: #fff;
  font-size: 14px;
}
#pc_left .menu li a:hover {
  text-decoration: underline;
}
#pc_left .copy {
  margin-top: 15px;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 959px) {
  #pc_left {
    display: none;
  }
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #main
** --------------------------------------------------------- */
#main {
  max-width: 375px;
/*  width: calc(37500% / 1270);*/
  width: 100%;
  margin-left: auto;
  background-color: #F2F2F2;
}
@media (max-width: 959px) {
  #main {
    margin-right: auto;
  }
}
@media (max-width: 519px) {
  #main {
    max-width: none;
  }
}


/* ---------- #header ---------- */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  background-color: #fff;
}
#header .h_left {
}
#header .desc {
  font-size: 10px;
}
#header .logo {
}
#header .logo img {
  width: 148px;
}
#header .logo span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: 8px;
  border: 1px solid;
  border-radius: 5px;
  color: var(--pri-color);
  font-size: 10px;
  font-weight: bold;
}
#header .h_right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
#header a {
}
#header a img {
  height: 24px;
}
#header a span {
  display: block;
  margin-top: 2px;
  color: var(--pri-color);
  font-size: 12px;
}


/* ---------- .main_wrapper ---------- */
.main_wrapper {
  padding-inline: 10px;
}

h2 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.lead {
  margin-top: 10px;
  margin-bottom: 10px;
}

.select_wrapper {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  overflow: hidden;
}
.select_wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 5px;
  right: 10px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(45deg);
}
.select_wrapper select {
  position: relative;
  z-index: 2;
  padding: 10px 30px 10px 10px;
  cursor: pointer;
}


/* ---------- #footer_line ---------- */
#footer_line {
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
  text-align: center;
}
#footer_line a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 250px;
  padding: 10px;
  background-color: #33c855;
  border-radius: 100px;
  color: #fff;
  letter-spacing: 2px;
}
#footer_line a img {
  width: 27px;
  margin-right: 10px;
}
#footer_line a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}


/* ---------- #footer ---------- */
#footer {
  background-image: var(--sec-gra);
  color: #fff;
  text-align: center;
}

/* .links */
#footer .links {
}
#footer .links ul {
  display: flex;
  flex-wrap: wrap;
}
#footer .links li {
  width: 50%;
  border-bottom: 1px solid;
}
#footer .links li:nth-child(2n+1) {
  border-right: 1px solid;
}
#footer .links a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
}

/* .main */
#footer .main {
}
#footer .logo {
  margin-top: 30px;
}
#footer .logo img {
  width: 80px;
}
#footer .copy {
  padding: 10px 0;
  font-size: 10px;
}




/* ---------------------------------------------------------
 * pager
** --------------------------------------------------------- */
ul.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}
ul.pagination span,
ul.pagination a {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #000;
  font-size: 13px;
  padding: 6px 12px;
  transition: all ease 0.3s;
}
ul.pagination span:hover,
ul.pagination a:hover{
  background-color: var(--pri-color);
  color: #fff;
  text-decoration: none;
}
ul.pagination span.current {
  background-color: var(--pri-color);
  color: #fff;
}