@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;900&display=swap');*/
/* ==========================================================================
Typography
========================================================================== */
/* 
font-family: "M PLUS 1p", sans-serif;
font-family: "M PLUS Rounded 1c", sans-serif;
*/
h1 {
  line-height: 0;
  max-width: 1366px;
  margin: auto;
}

h2,
h3,
h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

p,
li {
  font-size: 1rem;
  text-align: justify;
}
@media screen and (max-width: 540px) {
  p,
  li {
    font-size: 0.875rem;
  }
}

small {
  font-size: 0.75rem;
  display: block;
}

@media screen and (max-width: 540px) {
  h3 br {
    display: none;
  }
}
/* ==========================================================================
	General Styles
========================================================================== */
body {
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  font-family: "M PLUS 1p", sans-serif;
}

@media screen and (max-width: 1100px) {
  main {
    padding: 0 3%;
  }
}

section {
  max-width: 1000px;
  margin: 0 auto 100px;
}

#budget,
#product,
#support,
#shop,
#faq,
#form {
  border: 3px solid #333;
  border-radius: 20px;
  background-color: #FFF;
  position: relative;
  padding: 50px 30px 30px;
}
#budget h2,
#product h2,
#support h2,
#shop h2,
#faq h2,
#form h2 {
  width: 350px;
  height: auto;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

#target,
#requirement {
  border: 3px solid #004098;
  border-radius: 20px;
  background-color: #FFF;
}
#target h2,
#requirement h2 {
  text-align: center;
  color: #FFF;
  background-color: #004098;
  border-radius: 15px 15px 0 0;
  padding: 10px 20px;
}
#target h3,
#requirement h3 {
  font-size: 1.75rem;
  color: #e4007f;
  text-align: center;
  margin-bottom: 20px;
}
#target .target__item,
#target .requirement__item,
#requirement .target__item,
#requirement .requirement__item {
  padding: 30px 60px;
}
#target ul,
#requirement ul {
  padding-left: 1rem;
}
#target ul li::marker,
#requirement ul li::marker {
  content: "●";
}
#target ul li.asterisk::marker,
#requirement ul li.asterisk::marker {
  content: "※";
}

#flow h2,
#term h2 {
  font-size: 1.5rem;
  text-align: center;
  color: #FFF;
  background-color: #004098;
  padding: 10px;
  margin-bottom: 20px;
}

img {
  width: 100%;
  margin: 0 auto;
}

.button {
  display: block;
  width: 60%;
  padding: 20px 20px;
  margin: 30px auto 10px;
  background-color: #00a4c7;
  color: #FFF;
  font-size: 1.25rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 6px 0 #007095;
  transition: all 0.2s;
  background-size: 30px;
  background-position: center right 20px;
}
.button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #007095;
}

.button.newtab {
  background-image: url(../img/button_icon-1.svg);
}

.button.download {
  background-image: url(../img/button_icon-2.svg);
}

.flyer .button {
  width: 100%;
  margin: 60px auto 120px;
  padding: 30px 20px;
  font-size: 1.5rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #budget,
  #product,
  #support,
  #faq,
  #shop,
  #form {
    padding: 50px 20px 30px;
  }
  #target .target__item,
  #target .requirement__item,
  #requirement .target__item,
  #requirement .requirement__item {
    padding: 30px 20px;
  }
  .button {
    font-size: 1rem;
    width: 80%;
    background-size: 25px;
  }
  .flyer .button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 540px) {
  #budget h2,
  #product h2,
  #support h2,
  #shop h2,
  #faq h2,
  #form h2 {
    width: 300px;
    top: -30px;
  }
  #target h3,
  #requirement h3 {
    font-size: 1.25rem;
    text-align: left;
  }
  .button {
    width: 100%;
    background-size: 20px;
    background-position: center right 13px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* ==========================================================================
	#header
========================================================================== */
#header {
  background-color: #fff23f;
}

@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -100vw; /* 右から出てくる */
    top: 0;
    width: 100vw; /* スマホに収まるサイズ */
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #004098;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: fixed;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
    background-color: #004098;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #FFF;
  }
  .nav_item a:hover {
    background-color: #00a4c7;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #FFF;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}
@media only screen and (min-width: 769px) {
  nav {
    background-color: #004098;
  }
  nav.m_fixed {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .nav_list {
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    text-align: center;
    display: flex;
  }
  .nav_list li {
    width: 20%;
    list-style: none;
    border-left: 1px solid #FFF;
  }
  .nav_list li:last-child {
    border-right: 1px solid #FFF;
  }
  .nav_list a {
    font-size: 0.8rem;
    color: #FFF;
    background-color: #004098;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  .nav_list a:hover {
    color: #FFF;
    background-color: #00a4c7;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 1000px) {
  .nav_list a {
    font-size: 1rem;
  }
}
/* ==========================================================================
	#budget
========================================================================== */
#budget {
  margin-top: 100px;
}
#budget h3 {
  font-size: 1.5rem;
  color: #e4007f;
  border-bottom: 2px dashed #e4007f;
  padding: 0 10px 5px;
  width: -moz-fit-content;
  width: fit-content;
}
#budget .budget__main {
  margin: 0 auto;
}
#budget .budget__main p {
  color: #004098;
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
}
#budget .budget__main span {
  font-size: 8rem;
  line-height: 7.5rem;
  background: linear-gradient(transparent 75%, #fff100 75%);
  margin: 0 5px;
  padding: 0 5px;
}
#budget .budget__sub p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#budget .budget__sub p span:not(.budget__sub-txt-red) {
  font-size: 0.8rem;
}
#budget .budget__sub p:nth-of-type(1) {
  padding-left: 3.75rem;
}
#budget .budget__sub .budget__sub-txt-red {
  color: #e4007f;
}
@media screen and (min-width: 769px) {
  #budget .budget__main p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #budget {
    margin-top: 0px;
  }
  #budget .budget__main p {
    margin: 10px auto 30px;
  }
}
@media screen and (max-width: 540px) {
  #budget h3 {
    font-size: 1.25rem;
    text-align: center;
    width: auto;
    margin: auto;
  }
  #budget .budget__main p {
    font-size: 1.75rem;
  }
  #budget .budget__main span {
    font-size: 5rem;
    line-height: 4rem;
  }
  #budget .budget__sub p:nth-of-type(1) {
    padding-left: 0;
  }
}

/* ==========================================================================
	#product
========================================================================== */
#product .product__item {
  border: 2px solid #004098;
  border-radius: 20px;
  position: relative;
  padding: 20px;
}
#product .product__item .product__item-icon {
  position: absolute;
  width: 70px;
  top: -15px;
  left: -15px;
}
#product .product__item .product__item-img {
  position: absolute;
  width: 20%;
  max-width: 150px;
  top: 0;
  right: 20px;
}
#product .product__item:not(:last-of-type) {
  margin-bottom: 30px;
}
#product h3 {
  font-size: 1.5rem;
  color: #e4007f;
  border-bottom: 2px dashed #e4007f;
  padding: 0 0 10px 40px;
  margin: 0 0 20px;
}
#product h3 span {
  font-size: 1rem;
  margin-left: 5px;
  display: inline-block;
}
#product ul {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fffcd2;
}
#product li {
  font-family: "M PLUS Rounded 1c", sans-serif;
  list-style: none;
  background-image: url(../img/list_icon.png);
  background-size: 20px;
  background-position: top left;
  padding-left: 25px;
}
#product li:not(:last-child) {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  #product .product__item .product__item-icon {
    width: 50px;
    top: -20px;
    left: -20px;
  }
  #product .product__item .product__item-img {
    width: 100px;
    max-width: none;
    top: 10px;
    right: -10px;
  }
  #product h3 {
    padding: 0 50px 10px 0;
  }
}
@media screen and (max-width: 540px) {
  #product .product__item .product__item-img {
    width: 90px;
    top: 20px;
    right: -10px;
  }
  #product h3 {
    font-size: 1.25rem;
  }
  #product h3 span {
    font-size: 0.75rem;
  }
  #product ul {
    padding: 20px 10px;
  }
}

/* ==========================================================================
	#support
========================================================================== */
#support h3 {
  font-size: 1.75rem;
  color: #e4007f;
  text-align: center;
  margin-bottom: 20px;
}
#support .support__tab {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  gap: 0 3px;
}
#support .support__tab label {
  flex: 1 1 auto;
  order: -1;
  position: relative;
  padding: 0.1em 1em;
  background-color: #004098;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  cursor: pointer;
  transition: 0.1s all;
  border-top: 2px solid #004098;
  border-right: 2px solid #004098;
  border-bottom: 2px solid #004098;
  border-left: 2px solid #004098;
}
#support .support__tab label:hover, #support .support__tab label:has(:checked) {
  color: #004098;
  background-color: #FFF;
  border-bottom: 2px solid #FFF;
}
#support .support__tab input {
  display: none;
}
#support .support__tab > div {
  display: none;
  width: 100%;
}
#support .support__tab label:has(:checked) + div {
  display: block;
  border-right: 2px solid #004098;
  border-bottom: 2px solid #004098;
  border-left: 2px solid #004098;
}
#support .support__tab-txt {
  background-color: #f2f2f2;
  padding: 30px 20px;
  position: relative;
}
#support .support__tab-txt h4 {
  font-size: 1.5rem;
  color: #e4007f;
  border-bottom: 2px dashed #e4007f;
  padding: 0 0 10px;
  margin: 0 0 15px;
}
#support .support__tab-txt p {
  padding-right: 160px;
}
#support .support__tab-txt img {
  position: absolute;
  width: 150px;
  height: auto;
  top: 0;
  right: 20px;
}
#support .support__tab-jcb img {
  width: 100%;
  margin: -15px 0 10px;
  position: relative;
}
#support .support__tab-jcb ul {
  padding: 0 20px 30px 36px;
}
#support .support__tab-jcb li::marker {
  content: "※";
  color: #e4007f;
}
@media screen and (max-width: 768px) {
  #support .support__tab label {
    font-size: 1.5rem;
  }
  #support .support__tab-txt h4 {
    font-size: 1.25rem;
    padding: 0 90px 10px 0;
  }
  #support .support__tab-txt p {
    padding-right: 0;
  }
  #support .support__tab-txt img {
    width: 90px;
  }
}
@media screen and (max-width: 540px) {
  #support h3 {
    font-size: 1.25rem;
    text-align: left;
  }
  #support .support__tab-txt h4 {
    font-size: 1.25rem;
    padding: 0 0 10px 0;
  }
  #support .support__tab-txt img {
    display: none;
  }
  #support .support__tab-jcb img {
    margin: 10px 0 10px;
  }
}

/* ==========================================================================
	#target
========================================================================== */
/* ==========================================================================
	#requirement
========================================================================== */
/* ==========================================================================
	#flow
========================================================================== */
.flow__note {
  background-color: #FFF;
  border-radius: 20px;
  padding: 30px 60px;
  margin-bottom: 30px;
}
.flow__note h3 {
  color: #e4007f;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.flow__note ul {
  padding-left: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.flow__note li::marker {
  content: "●";
}

.flow__container {
  background-color: #FFF;
  border: 3px dashed #333;
  border-radius: 20px;
  padding: 30px 60px;
  margin-bottom: 30px;
  position: relative;
  background-position: top left;
  background-size: 18%;
}
.flow__container h3 {
  color: #e4007f;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.flow__container p {
  text-align: center;
  margin-bottom: 10px;
}
.flow__container small {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.flow__container.internet {
  background-image: url(../img/flow-1.png);
}
.flow__container.internet .flow__container-column:nth-of-type(1) {
  background-image: url(../img/flow_img-1.png);
}
.flow__container.internet .flow__container-column:nth-of-type(2) {
  background-image: url(../img/flow_img-2.png);
}
.flow__container.internet .flow__container-column:nth-of-type(3) {
  background-image: url(../img/flow_img-3.png);
}

.flow__container.post {
  background-image: url(../img/flow-2.png);
}
.flow__container.post .flow__container-column:nth-of-type(1) {
  background-image: url(../img/flow_img-1.png);
}
.flow__container.post .flow__container-column:nth-of-type(2) {
  background-image: url(../img/flow_img-4.png);
}
.flow__container.post .flow__container-column:nth-of-type(3) {
  background-image: url(../img/flow_img-5.png);
}

.flow__container-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.flow__container-column {
  color: #FFF;
  background-color: #004098;
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: bottom left;
  border-radius: 10px;
  padding: 15px 15px 30px;
  width: 32%;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.flow__container-column img {
  width: 15%;
}
.flow__container-column p {
  text-align: justify;
  width: 85%;
}
.flow__container-column p span {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 5px;
}
.flow__container-column:not(:last-of-type)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #fed100;
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 1;
  transform: translateY(-50%);
  margin: auto;
}

.flow__attention {
  padding: 30px 60px;
  margin-bottom: 30px;
}
.flow__attention h3 {
  color: #e4007f;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.flow__attention ul {
  padding-left: 1rem;
}
.flow__attention li::marker {
  content: "●";
}

@media screen and (max-width: 768px) {
  .flow__note {
    padding: 30px 20px;
  }
  .flow__container {
    padding: 30px 20px;
  }
  .flow__container.internet,
  .flow__container.post {
    background-image: none;
  }
  .flow__container-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .flow__container-column {
    width: 100%;
    max-width: 500px;
    min-height: 120px;
  }
  .flow__container-column img {
    max-width: 50px;
  }
  .flow__container-column:not(:last-of-type)::before {
    border-width: 30px 20px 0 20px;
    border-color: #fed100 transparent transparent transparent;
    top: 100%;
    left: 0;
    transform: translateX(-50%);
  }
  .flow__attention {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 540px) {
  .flow__note h3,
  .flow__container h3,
  .flow__attention h3 {
    font-size: 1.5rem;
  }
  .flow__container p {
    text-align: left;
  }
}
/* ==========================================================================
	#faq
    #term
========================================================================== */
#faq h3,
#term h3 {
  color: #FFF;
  background-color: #00a4c7;
  width: 90%;
  max-width: 900px;
  padding: 15px 25px;
  margin: 20px auto 10px;
}
#faq .faq__accordion,
#faq .term__accordion,
#term .faq__accordion,
#term .term__accordion {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 10px;
  background-color: #FFF;
}
#faq .faq__accordion:not([open]),
#faq .term__accordion:not([open]),
#term .faq__accordion:not([open]),
#term .term__accordion:not([open]) {
  margin-bottom: 10px;
}
#faq .faq__accordion summary,
#faq .term__accordion summary,
#term .faq__accordion summary,
#term .term__accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.5em 3em 0.5em 1.5em;
  background-color: #f0f0f0;
  color: #333;
  text-align: justify;
  font-weight: 500;
  cursor: pointer;
}
#faq .faq__accordion summary::-webkit-details-marker,
#faq .term__accordion summary::-webkit-details-marker,
#term .faq__accordion summary::-webkit-details-marker,
#term .term__accordion summary::-webkit-details-marker {
  display: none;
}
#faq .faq__accordion summary::after,
#faq .term__accordion summary::after,
#term .faq__accordion summary::after,
#term .term__accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  /* 縦軸をセンタリングする */
  right: 20px;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #333;
  transition: transform 0.3s;
}
#faq .faq__accordion p,
#faq .term__accordion p,
#term .faq__accordion p,
#term .term__accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em;
  color: #333333;
  text-align: justify;
  transition: transform 0.5s, opacity 0.5s;
}
#faq .faq__accordion[open] summary::after,
#faq .term__accordion[open] summary::after,
#term .faq__accordion[open] summary::after,
#term .term__accordion[open] summary::after {
  transform: rotate(90deg);
}
#faq .faq__accordion[open] p,
#faq .term__accordion[open] p,
#term .faq__accordion[open] p,
#term .term__accordion[open] p {
  transform: none;
  opacity: 1;
}
@media screen and (max-width: 540px) {
  #faq h3,
  #term h3 {
    width: 100%;
  }
  #faq .faq__accordion,
  #faq .term__accordion,
  #term .faq__accordion,
  #term .term__accordion {
    width: 100%;
  }
}

#faq {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #faq {
    margin-top: 0;
  }
}

#term .faq__accordion summary,
#term .term__accordion summary {
  background-color: #FFF;
  color: #004098;
}
#term .faq__accordion p,
#term .term__accordion p {
  background-color: #f0f0f0;
}

/* ==========================================================================
	#aopato
========================================================================== */
#aopato {
  background-color: #FFF;
}
#aopato img.border {
  display: block;
  margin: 0;
  padding: 0;
}
#aopato .aopato__column {
  padding: 60px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
#aopato .aopato__column-img {
  width: 40%;
}
#aopato .aopato__column-txt {
  width: 60%;
}
#aopato .aopato__column-txt h2 {
  max-width: 550px;
  margin-bottom: 30px;
}
#aopato .aopato__column-txt h3 {
  color: #e4007f;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#aopato .button {
  width: 100%;
  min-width: none;
  padding: 10px 20px;
  background-color: #f6ab00;
  box-shadow: 0 6px 0 #b98000;
}
#aopato .button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #b98000;
}
@media screen and (max-width: 768px) {
  #aopato .aopato__column {
    gap: 30px;
    flex-direction: column-reverse;
  }
  #aopato .aopato__column-img {
    width: 100%;
    max-width: 550px;
  }
  #aopato .aopato__column-txt {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  #aopato .aopato__column {
    padding: 30px;
  }
  #aopato .aopato__column-txt h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
	#shop
========================================================================== */
#shop {
  margin-top: 100px;
}
#shop .shop__tab {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  gap: 0 3px;
}
#shop .shop__tab label {
  flex: 1 1 auto;
  order: -1;
  position: relative;
  padding: 10px;
  background-color: #004098;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  cursor: pointer;
  transition: 0.1s all;
  border-top: 2px solid #004098;
  border-right: 2px solid #004098;
  border-bottom: 2px solid #004098;
  border-left: 2px solid #004098;
}
#shop .shop__tab label:hover, #shop .shop__tab label:has(:checked) {
  color: #004098;
  background-color: #FFF;
  border-bottom: 2px solid #FFF;
}
#shop .shop__tab input {
  display: none;
}
#shop .shop__tab > div {
  display: none;
  width: 100%;
}
#shop .shop__tab label:has(:checked) + div {
  display: block;
  border-right: 2px solid #004098;
  border-bottom: 2px solid #004098;
  border-left: 2px solid #004098;
}
#shop .shop__tab-content {
  padding: 30px 20px;
}
#shop .shop__table {
  border-collapse: collapse;
  width: 100%;
}
#shop .shop__table tr {
  transition: all 0.1s;
}
#shop .shop__table tr:hover {
  background-color: #f5f5f5;
}
#shop .shop__table th,
#shop .shop__table td {
  border: 1px solid #004098;
  padding: 10px;
}
#shop .shop__table th:nth-of-type(1), #shop .shop__table th:nth-of-type(4),
#shop .shop__table td:nth-of-type(1),
#shop .shop__table td:nth-of-type(4) {
  text-align: center;
}
#shop .shop__table th {
  color: #FFF;
  background-color: #00a4c7;
}
#shop .shop__table th:nth-of-type(1) {
  width: 15%;
}
#shop .shop__table th:nth-of-type(2) {
  width: 20%;
}
#shop .shop__table th:nth-of-type(3) {
  width: 40%;
}
#shop .shop__table th:nth-of-type(4) {
  width: 15%;
}
@media screen and (max-width: 768px) {
  #shop {
    margin-top: 0;
  }
  #shop .shop__tab label {
    width: 49%;
    border-radius: 100px;
    margin-bottom: 3px;
  }
  #shop .shop__tab label:hover, #shop .shop__tab label:has(:checked) {
    color: #004098;
    border-bottom: 2px solid #004098;
  }
  #shop .shop__tab label:has(:checked) + div {
    border-top: 2px solid #004098;
    margin-top: 10px;
  }
  #shop .shop__table {
    display: block;
    overflow: auto;
    white-space: nowrap;
  }
  #shop .shop__table th {
    color: #FFF;
    background-color: #00a4c7;
  }
  #shop .shop__table th:nth-of-type(1) {
    min-width: 140px;
  }
  #shop .shop__table th:nth-of-type(2) {
    min-width: 140px;
  }
  #shop .shop__table th:nth-of-type(3) {
    min-width: 280px;
  }
  #shop .shop__table th:nth-of-type(4) {
    min-width: 140px;
  }
  #shop small.sp {
    display: block;
  }
}

/* ==========================================================================
	#form
========================================================================== */
#form {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #form {
    margin-top: 0;
  }
}

/* ==========================================================================
	#footer
========================================================================== */
footer {
  background-color: #004098;
  padding: 70px 10px 40px;
}
footer p {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 30px;
}
footer span {
  font-size: 1rem;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  line-height: 1.75rem;
  margin-top: 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 540px) {
  footer p {
    font-size: 1rem;
  }
  footer span {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */