@charset "UTF-8";
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* ---  --- */
.fs-title-40 {
  font-size: min(calc(25px + 15 * (100vw - 320px) / 448), 40px);
}

/* -------------------------------
	main title
-------------------------------- */
.title-1 {
  line-height: 1.5;
  padding-left: 0.85em;
  transform: rotateZ(0.03deg);
  position: relative;
}
.title-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.3em;
  height: 100%;
  border-radius: 0.15em;
  background-color: var(--text-base);
}

.title-2 {
  color: var(--text-base);
  line-height: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 1.175em;
}
.title-2 .in {
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  transform: rotateZ(0.03deg);
}
.title-2 .in:before, .title-2 .in:after {
  content: "";
  width: 100%;
  height: 12px;
  display: block;
  background: url("../images/common/title-2-line-1.png") no-repeat center center/auto 100%;
}
.title-2 .in:before {
  margin-bottom: 0.5em;
}
.title-2 .in:after {
  margin-top: 0.5em;
}
.title-2 .in.fs-en {
  text-stroke: 0.05em currentColor;
  -webkit-text-stroke: 0.05em currentColor;
}
.title-2 .in.fs-en:before {
  margin-bottom: 0.5em;
}
.title-2 .in.fs-en:after {
  margin-top: 0.25em;
}
.title-2.white {
  color: #fff;
}
.title-2.white .in:before, .title-2.white .in:after {
  background: url("../images/common/title-2-line-2.png") no-repeat center center/auto 100%;
}
.title-2.yellow {
  color: #ffff00;
}
.title-2.yellow .in:before, .title-2.yellow .in:after {
  background: url("../images/common/title-2-line-3.png") no-repeat center center/auto 100%;
}

.title-3 {
  padding-bottom: 0.5em;
  position: relative;
}
.title-3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.75em;
  /* 波の高さ */
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='30'%3E%3Cpath d='M0,25 Q25,20 50,25 T100,25' stroke='%23125488' fill='none' stroke-width='5'/%3E%3C/svg%3E") repeat-x;
  background-size: 1em 0.75em;
  /* 横幅を2emに設定 */
}
.title-3.white {
  color: #fff;
}
.title-3.white:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='30'%3E%3Cpath d='M0,25 Q25,20 50,25 T100,25' stroke='%23fff' fill='none' stroke-width='5'/%3E%3C/svg%3E") repeat-x;
  background-size: 1em 0.75em;
  /* 横幅を2emに設定 */
}

.title-4 {
  line-height: 1.5;
  padding: 0.25em 1em;
  background-color: rgba(18, 84, 136, 0.2);
}

/* --- form --- */
/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: 100vh;
}
@supports (height: 100dvh) {
  #mainvisual {
    height: 100dvh;
  }
}

/* -------------------------------
	home
-------------------------------- */
.home_product {
  padding-bottom: 30px;
}
.home_product h2 {
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-stroke: 0.05em currentColor;
  -webkit-text-stroke: 0.05em currentColor;
  width: 11.075em;
  padding: 1em;
  margin: 0 auto 20px;
  background: url("../images/common/title-bg-1.svg") no-repeat center center/100% 100%;
}
.home_product__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 10px;
}
.home_product__row > .item > a {
  text-decoration: none;
  width: 100%;
  aspect-ratio: 51 / 46;
  display: block;
  position: relative;
}
.home_product__row > .item > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 25px;
  height: 27px;
  background: url("../images/common/button001.png") no-repeat center center;
}
.home_product__row > .item > a img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  border: solid 5px #1c8fd0;
  transition: opacity 0.3s ease;
}
.home_product__row > .item > a:hover img {
  opacity: 0.65;
}

/* ---  --- */
.home_news {
  padding-top: 80px;
  padding-bottom: 56px;
  overflow: hidden;
}
.home_news h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 1.175em;
}
.home_news h2 > .in {
  color: var(--text-yellow);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-stroke: 0.05em currentColor;
  -webkit-text-stroke: 0.05em currentColor;
}
.home_news h2 > .in:before, .home_news h2 > .in:after {
  content: "";
  width: 100%;
  height: 13px;
  display: block;
  background: url("../images/home/home_news_ttl_line.png") no-repeat center center/contain;
}
.home_news h2 > .in:before {
  margin-bottom: 0.5em;
}
.home_news h2 > .in:after {
  margin-top: 0.25em;
}
.home_news h2:before, .home_news h2:after {
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home_news h2:before {
  width: 1.875em;
  aspect-ratio: 25 / 21;
  margin-right: 1.65em;
  background-image: url("../images/home/home_news_ttl_l.png");
}
.home_news h2:after {
  width: 1.7em;
  aspect-ratio: 68 / 63;
  margin-left: 1.65em;
  background-image: url("../images/home/home_news_ttl_r.png");
}
.home_news .btn-1:before {
  background-color: #79cbf2;
}

.home_news_list__item {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: solid 2px rgba(255, 255, 255, 0.5);
}
.home_news_list__item > .date {
  color: #125488;
  font-size: 1.15rem;
  margin-bottom: 0.25em;
  transform: rotateZ(0.03deg);
}
.home_news_list__item > .date .new {
  color: #ffff00;
  display: inline-block;
  margin-left: 10px;
  margin-top: -.2em;
}
.home_news_list__item > .htmlarea {
  transform: rotateZ(0.03deg);
}
.home_news_list__item .btns {
  text-align: right;
}
.home_news_list__item .btns .btn {
  font-size: 12px;
  padding: 0.25em 2em;
}

/**/
.news_swiper {
  overflow: visible !important;
}
.news_swiper .swiper-slide {
  width: max-content;
  height: auto;
}
.news_swiper .swiper-pagination {
  position: static;
  bottom: 0;
}
.news_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--text-yellow);
}

/**/
.home_news__item {
  width: 243px;
  margin: 0;
}
.home_news__item > .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.home_news__item figcaption {
  margin-top: 1.5rem;
}
.home_news__item figcaption .title {
  color: #fff;
  font-size: 17px;
  text-align: center;
}
a > .home_news__item > .photo img {
  transition: transform 0.3s ease;
}
a > .home_news__item:hover > .photo img {
  transition: transform 0.7s ease-out;
  transform: scale(1.15);
}

/* ---  --- */
.home_schedule {
  padding-top: 88px;
  padding-bottom: 120px;
  margin-top: -25px;
  background: url("../images/home/home_schedule_bg.png") no-repeat center top, linear-gradient(to bottom, rgba(67, 151, 211, 0) 0%, rgba(67, 151, 211, 0) 43%, #4397d3 45%, #4397d3 100%);
}
.home_schedule h2 {
  color: #fff;
  margin-bottom: 1.175em;
  position: relative;
  z-index: 0;
}
.home_schedule h2:before {
  content: "";
  position: absolute;
  top: 80%;
  right: -20px;
  left: -20px;
  height: 144px;
  background: url("../images/home/home_schedule_bg2.png") no-repeat center top/contain;
  z-index: -1;
}
.home_schedule h2 > .in {
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-stroke: 0.05em currentColor;
  -webkit-text-stroke: 0.05em currentColor;
  display: block;
}
.home_schedule h2 > .in:before, .home_schedule h2 > .in:after {
  content: "";
  width: 100%;
  height: 13px;
  display: block;
  background: url("../images/home/home_schedule_ttl_line.png") no-repeat center center;
}
.home_schedule h2 > .in:before {
  margin-bottom: 0.5em;
}
.home_schedule h2 > .in:after {
  margin-top: 0.25em;
}

/**/
.home_schedule__content {
  position: relative;
}
.home_schedule__content > .ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: -10px;
}

/**/
.home_schedule__calendar {
  width: 100%;
  border-radius: 255px 255px 30px 30px;
  padding: 60px 0;
  margin-bottom: 40px;
  background-color: #fff;
  overflow: hidden;
}
.home_schedule__calendar__item .date {
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 25px;
}
.home_schedule__calendar__item .date strong {
  font-weight: 800;
  font-size: 40px;
  display: block;
}

/**/
.schedule_swiper .swiper-button-next, .schedule_swiper .swiper-button-prev {
  font-size: 1rem;
  width: min(calc(30px + 13 * (100vw - 320px) / 448), 43px);
  height: min(calc(30px + 13 * (100vw - 320px) / 448), 43px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: calc(50% + 30px);
}
.schedule_swiper .swiper-button-next:before, .schedule_swiper .swiper-button-next:after, .schedule_swiper .swiper-button-prev:before, .schedule_swiper .swiper-button-prev:after {
  display: none;
}
.schedule_swiper .swiper-button-next {
  right: min(calc(10px + 20 * (100vw - 320px) / 448), 30px);
  background-image: url("../images/home/swiper_arrow_r.png");
}
.schedule_swiper .swiper-button-prev {
  left: min(calc(10px + 20 * (100vw - 320px) / 448), 30px);
  background-image: url("../images/home/swiper_arrow_l.png");
}

.schedule-thumbs-swiper {
  overflow: inherit;
}
.schedule-thumbs-swiper .swiper-slide {
  width: max-content;
  height: auto;
}

.slide_schedule_content {
  width: 100%;
  max-width: 343px;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
}
.slide_schedule_content .date {
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
  width: 2em;
  position: relative;
}
.slide_schedule_content .date .month {
  font-size: 14px;
  text-align: center;
  width: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
  position: relative;
}
.slide_schedule_content .date .month:after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 1px;
  height: 40px;
  background-color: #0079b3;
  transform: translate(0, -40%) rotate(45deg);
}
.slide_schedule_content .date .day {
  padding-left: 0.5em;
}
.slide_schedule_content .columns ul {
  margin: 0;
}

/* ---  --- */
.home_search {
  padding: 80px 0;
  margin-top: -40px;
  background: url("../images/home/home_search_bg.png") no-repeat center top;
}
.home_search h2 {
  color: #1386a8;
  margin-bottom: 30px;
}
.home_search h2 > .in {
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-stroke: 0.05em currentColor;
  -webkit-text-stroke: 0.05em currentColor;
  display: block;
}
.home_search h2 > .in:before, .home_search h2 > .in:after {
  content: "";
  width: 100%;
  height: 13px;
  display: block;
  background: url("../images/home/home_search_ttl_line.png") no-repeat center center;
}
.home_search h2 > .in:before {
  margin-bottom: 0.5em;
}
.home_search h2 > .in:after {
  margin-top: 0.25em;
}
.home_search .image {
  text-align: center;
  margin-bottom: 60px;
}
.home_search .btn {
  color: #1386a8;
  font-size: min(calc(16px + 6 * (100vw - 320px) / 448), 24px);
  width: 20em;
  height: 2.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10em;
  margin: 0 auto;
  background-color: #fff;
}
.home_search .btn i {
  font-size: 1.5em;
  line-height: 1;
  margin-left: .25em;
}
.home_search .btn:hover {
  color: #fff;
  background-color: #1386a8;
}

.sea-note-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.5em;
  padding: 0 1em;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.sea-note {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}

@media (max-width: 767px) {
  .sea-note-list {
    width: 63%;
  }
}

@media (max-width: 575px) {
  .sea-note-list {
    width: 100%;
  }
}


/* -------------------------------
	お知らせ
-------------------------------- */
.cat_navi {
  margin-bottom: 30px;
}

.news_catnavi {
  margin-top: 5px;
  border-radius: 20px;
  background-color: #ECF5FC;
}
.news_catnavi > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.news_catnavi > ul > li {
  text-align: center;
  flex: 0 0 33.33334%;
  padding: 5px 5px;
}
.news_catnavi > ul > li > a {
  color: var(--text-blue);
  text-decoration: none;
  display: block;
  padding: 0.5em;
  border-radius: 10em;
  border: solid 1px var(--text-blue);
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.news_catnavi > ul > li > a:hover, .news_catnavi > ul > li.active > a {
  color: #fff;
  background-color: var(--text-blue);
}

/* ---  --- */
.news_lists {
  margin-bottom: 60px;
}

.news_lists__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.news__item {
  width: 100%;
  margin: 0;
}
.news__item > .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.news__item figcaption {
  margin-top: 1rem;
}
.news__item figcaption .title {
  font-size: min(calc(10px + 4 * (100vw - 320px) / 448), 14px);
  text-align: center;
  display: block;
}
a > .news__item > .photo img {
  transition: transform 0.3s ease;
}
a > .news__item:hover > .photo img {
  transition: transform 0.7s ease-out;
  transform: scale(1.15);
}

/* ---  --- */
.news_detail_content {
  padding-bottom: 50px;
}
.news_detail_content .news_cat {
  margin-bottom: 10px;
}
.news_detail_content .news_cat > .in {
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.25em 1em;
  border-radius: 10em;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--text-blue);
  transform: rotateZ(0.03deg);
}

/**/
.news_content {
  padding-bottom: 80px;
}
.news_content .news_list__item {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: solid 2px rgba(18, 84, 136, 0.2);
}
.news_content .news_list__item > .date {
  color: #125488;
  font-size: 1.15rem;
  margin-bottom: 0.25em;
  transform: rotateZ(0.03deg);
}
.news_content .news_list__item > .date .new {
  color: #FF9E00;
  display: inline-block;
  margin-left: 10px;
  margin-top: -.2em;
}
.news_content .news_list__item > .htmlarea {
  transform: rotateZ(0.03deg);
}
.news_content .news_list__item .btns {
  text-align: right;
}
.news_content .news_list__item .btns .btn {
  font-size: 12px;
  padding: 0.25em 2em;
}

/* -------------------------------
	PRODUCT
-------------------------------- */
.product_lists {
  padding-bottom: 50px;
}

.product_lists__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}
.product_lists__row__col > a {
  text-decoration: none;
  width: 100%;
  aspect-ratio: 51 / 46;
  display: block;
  position: relative;
}
.product_lists__row__col > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 25px;
  height: 27px;
  background: url("../images/common/button001.png") no-repeat center center;
}
.product_lists__row__col > a img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  border: solid 5px #1c8fd0;
  transition: opacity 0.3s ease;
}
.product_lists__row__col > a:hover img {
  opacity: 0.65;
}

/* --- カテゴリ　一覧 --- */
.product_category {
  padding: 10%;
  margin: 0 20px 30px;
  border-radius: 50px;
  background-color: #fff350;
}
.product_category .box {
  padding: 0 2em;
  margin: 0 auto 10px;
}
.product_category .box:last-child {
  margin-bottom: 0;
}
.product_category .box .ttl {
  font-size: 21px;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.product_category .box .ttl::before, .product_category .box .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  margin-top: -.75em;
  background-repeat: no-repeat;
  background-size: contain;
}
.product_category .box .ttl::before {
  background-image: url("../images/product/product_icon_1_l.png");
  left: -2em;
}
.product_category .box .ttl::after {
  content: "\f054";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin-top: -.5em;
  right: 0.5em;
  transition: transform 0.2s ease;
}
.product_category .box .ttl.active::after {
  transform: rotate(90deg);
}
.product_category .box .ttl:not(> a) {
  color: #1c8fd0;
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 10em;
  border: solid 2px #1c8fd0;
  background-color: #fff;
}
.product_category .box .ttl:has(> a)::after {
  display: none;
}
.product_category .box .ttl > a {
  color: #1c8fd0;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  padding: 0.25em 1em;
  border-radius: 10em;
  display: block;
  border: solid 2px #1c8fd0;
  background-color: #fff;
}
.product_category .box:nth-child(even) .ttl::before {
  background-image: url("../images/product/product_icon_2_l.png");
}
.product_category__list {
  color: #1c8fd0;
  font-size: 16px;
  padding: 0.75em 0 0;
}
@media print, screen and (min-width: 768px) {
  .product_category__list {
    font-size: 18px;
  }
}
.product_category__list > li {
  padding-left: 1.2em;
  position: relative;
}
.product_category__list > li:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.5);
}
.product_category__list > li > a {
  color: #1c8fd0;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.product_category__list > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left bottom;
  background-color: #1c8fd0;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.product_category__list > li > a:hover:after, .product_category__list > li.active > a:after {
  transform: scaleX(1);
  visibility: visible;
}
.product_category .box.age .ttl {
  color: #D01B6A;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  padding: 0.25em 1em;
  border-radius: 10em;
  border: solid 2px #D01B6A;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.product_category .box.age .ttl:before {
  background-image: url("../images/product/product_icon_3_l.png") !important;
}
.product_category .box.age .product_category__list {
  color: #D01B6A;
}
.product_category .box.age .product_category__list > li > .ttl2 {
  color: #D01B6A;
  font-size: 1.1112em;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.product_category .box.age .product_category__list > li > .ttl2::after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
  margin-left: 0.5em;
  transition: transform 0.2s ease;
}
.product_category .box.age .product_category__list > li > .ttl2.active::after {
  transform: rotate(90deg);
}
.product_category .box.age .product_category__list > li > ul {
  list-style: none;
  padding: 0 0 1em;
  margin: 0;
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(3, 1fr);
}
.product_category .box.age .product_category__list > li > ul > li > a {
  color: #D01B6A;
  text-decoration: none;
}
.product_category .box.age .product_category__list > li > ul > li > a:hover {
  text-decoration: underline;
}

/**/
.product_search {
  padding: 0 15%;
}

/* ---  --- */
.product_detail_content {
  padding-bottom: 0px;
}

.product_cat {
  margin-bottom: 10px;
}
.product_cat > .in {
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.25em 1em;
  border-radius: 10em;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--text-blue);
  transform: rotateZ(0.03deg);
}

.product_detail_info {
  padding: 15px;
  border-radius: 15px;
  border: solid 2px var(--text-blue);
}
.product_detail_info h4 {
  text-align: center;
}
.product_detail_info dl {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.product_detail_info dl dt, .product_detail_info dl dd {
  margin: 0;
  padding: 0.5em 0;
  border-bottom: dashed 1px #ACC9D9;
  transform: rotateZ(0.03deg);
}
.product_detail_info dl dt:last-of-type, .product_detail_info dl dd:last-of-type {
  border-bottom: none;
}
.product_detail_info dl dt {
  white-space: nowrap;
  padding-right: 1em;
}

.product_detail__map {
  margin: 0 -20px;
  background: url("../images/home/home_schedule_bg.png") no-repeat center top;
}
.product_detail__map .inner {
  padding: 80px 20px 50px;
}

#shop_map {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  background-color: #f3f3f3;
}

#shop_map2 {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  background-color: #f3f3f3;
}

.product_detail_item {
  background-color: #4397d3;
  margin: 0 -20px;
  padding: 0 20px 80px;
}
.product_detail_item__box {
  border: solid 1px #226493;
  background-color: #fff;
  padding: 15px 0;
  margin-bottom: 5px;
  border-radius: 10px;
  display: flex;
}
.product_detail_item__box > .column {
  flex: 1 1 0;
  padding: 0 15px;
}
.product_detail_item__box > .column .ttl, .product_detail_item__box > .column .txt, .product_detail_item__box > .column .distance {
  transform: rotateZ(0.03deg);
}
.product_detail_item__box > .column .ttl {
  font-size: 17px;
}
.product_detail_item__box > .column .distance {
  font-size: 12px;
}
.product_detail_item__box .local {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(18.75vw, 100px);
  border-left: solid 1px #226493;
}
.product_detail_item__box .local a {
  color: #125488;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  margin: auto;
  display: block;
}
.product_detail_item__box .local a i {
  color: #ff0000;
  font-size: 2em;
  display: block;
}
.product_detail_item__box .local a span {
  display: inline-block;
  transform: rotateZ(0.03deg);
  position: relative;
}
.product_detail_item__box .local a span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: red;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.product_detail_item__box .local a:hover span:after {
  transform: scaleX(1);
  visibility: visible;
}

.product_detail__back {
  text-align: center;
  padding: 50px 20px;
  margin: 0px -20px 0;
  background: url("../images/home/home_search_bg.png") no-repeat center top;
}

/* ---  --- */
.gallery01 [class*=swiper]:focus {
  outline: none;
}
.gallery01 .slide-media, .gallery01 .thumb-media {
  position: relative;
  overflow: hidden;
}
.gallery01 .slide-media img, .gallery01 .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery01 .swiper-button-prev, .gallery01 .swiper-button-next {
  color: #fff;
  font-size: 16px;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}
.gallery01 .swiper-button-prev:after, .gallery01 .swiper-button-next:after {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
}
.gallery01 .swiper-button-prev {
  left: 0.1em;
}
.gallery01 .swiper-button-prev:after {
  content: "\f104";
}
.gallery01 .swiper-button-next {
  right: 0.1em;
}
.gallery01 .swiper-button-next:after {
  content: "\f105";
}
.gallery01 .swiper-scrollbar {
  left: 0;
  width: 100%;
}
.gallery01 .swiper-main {
  margin-bottom: 10px;
  overflow: visible;
}
.gallery01 .slide {
  display: block;
  overflow: hidden;
}
.gallery01 .slide .slide-media {
  text-align: center;
  height: auto;
}
.gallery01 .slide .slide-media img {
  position: static;
  object-fit: contain;
}
.gallery01 .swiper-thumb {
  padding-bottom: 10px;
}
.gallery01 .swiper-thumb .thumb-media {
  height: auto;
  aspect-ratio: 1 / 1;
  border: solid 1px #efefef;
  transition: border 0.3s ease;
}
.gallery01 .swiper-thumb .thumb-media img {
  padding: 2px;
  transition: opacity 0.3s ease;
}
.gallery01 .swiper-thumb .swiper-slide-thumb-active .thumb-media {
  border-color: var(--text-blue);
}
.gallery01 .swiper-scrollbar {
  height: 2px;
  opacity: 0.5;
}

.product_lists__item > .item {
  margin-bottom: 5px;
}
.product_lists__item > .item:last-child {
  margin-bottom: 0;
}
.product_lists__item > .item .btn {
  color: #226493;
  text-align: center;
  display: block;
  border: solid 2px #226493;
  border-radius: 10em;
  padding: 0.5em 1.5em;
}
.product_lists__item > .item .btn .in {
  display: inline-block;
  vertical-align: middle;
  transform: rotateZ(0.03deg);
}
.product_lists__item > .item .btn:hover {
  color: #fff;
  background-color: #226493;
}

/* -------------------------------
	SEARCH
-------------------------------- */
.store_map .image {
  text-align: center;
  padding: 0 10%;
}
.store_map .search .input-group {
  border: solid 4px #1c8fd0;
}
.store_map .search .input-group input[type="text"] {
  background-color: #fff !important;
}
.store_map .search .input-group .input-group-btn button {
  color: #1c8fd0;
  font-size: 1.5em;
  cursor: pointer;
}

.store_content {
  overflow: hidden;
}
.store_content:before {
  background-color: #00b9ef !important;
}
.store_content:after {
  background: url("../images/common/bg003.png") center top !important;
  bottom: -1px;
}
.store_content .title-1 {
  color: #fff;
}
.store_content .title-2 {
  font-weight: 500;
}

/* -------------------------------
	COMPANY
-------------------------------- */
.company_ttl_1 .in:before, .company_ttl_1 .in:after {
  height: 13px;
  background: url("../images/company/title-line-aisatu.png") no-repeat center center/contain;
}

.company_ttl_2 {
  color: #fff;
}
.company_ttl_2 .in:before, .company_ttl_2 .in:after {
  height: 13px;
  background: url("../images/company/title-line-company-2.png") no-repeat center center/contain;
}

.company_ttl_3 .in:before, .company_ttl_3 .in:after {
  height: 13px;
  background: url("../images/company/title-line-company-3.png") no-repeat center center/contain;
}

.company_logo {
  padding-bottom: 80px;
}
.company_logo:after {
  background-image: url("../images/common/bg002.png") !important;
}
.company_logo h3 {
  text-align: center;
  padding: 0 10%;
}
.company_logo h3 img {
  max-width: inherit;
  width: 100%;
}
.company_logo p {
  color: #fff;
  font-size: 1.142857rem;
  text-align: center;
}
.company_logo p .equal {
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1;
  transform: rotate(90deg);
  display: block;
}

/* ---  --- */
.company_greeting {
  margin-top: -30px;
  padding-bottom: 80px;
}
.company_greeting:after {
  background: #fff !important;
}

.company_greeting__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 1.5rem;
}
.company_greeting__row__image {
  text-align: center;
  flex: 0 0 auto;
}
.company_greeting__row__name {
  flex: 0 0 auto;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
.company_greeting__row__name .ceo_name {
  font-size: 22px;
  text-align: right;
}
.company_greeting__row__name .ceo_name img {
  height: 4em;
}

.company_greeting_dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1.5em;
}
.company_greeting_dl dt, .company_greeting_dl dd {
  margin: 0;
  transform: rotateZ(0.03deg);
}

/* ---  --- */
.company_overview {
  color: #fff;
  margin-top: -30px;
}
.company_overview:before {
  background-color: #03b9ef !important;
}

.company_overview__group {
  transform: rotateZ(0.03deg);
}
.company_overview__group > .ttl {
  font-size: 1.2857rem;
  padding-left: 1.2em;
  position: relative;
}
.company_overview__group > .ttl:before {
  content: "■";
  position: absolute;
  left: 0;
}
.company_overview__group > .column {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.company_overview__group > .column:last-of-type {
  margin-bottom: 0;
}

/* ---  --- */
.company_recruit {
  border-top: solid 8px var(--text-base);
  padding: 50px 0;
}
.company_recruit h4 {
  color: #8dcff7;
  font-size: 30px;
  text-align: center;
  margin-bottom: 1.5em;
}

.company_recruit__row__item {
  padding: 20px;
  border-radius: 20px;
  border: solid 1px var(--text-blue);
  margin-bottom: 10px;
}
.company_recruit__row__item:last-child {
  margin-bottom: 0;
}
.company_recruit__row__item .ttl {
  font-size: 1.142857rem;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.company_recruit__row__item .ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5em;
  /* 波の高さ */
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='30'%3E%3Cpath d='M0,25 Q25,20 50,25 T100,25' stroke='%23125488' fill='none' stroke-width='3'/%3E%3C/svg%3E") repeat-x;
  background-size: 0.5em 0.5em;
  /* 横幅を2emに設定 */
}
.company_recruit__row__item .column {
  font-weight: 500;
}

/* ---  --- */
.company_recruit_item {
  min-height: 50vh;
}
.company_recruit_item .accordion-box > .ttl {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  padding: 1.2em 3em 1.2em 1em;
  border-radius: 0;
  background-color: #1c8fd0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  transform: rotateZ(0.03deg);
}
.company_recruit_item .accordion-box > .ttl .accordion_plus, .company_recruit_item .accordion-box > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.company_recruit_item .accordion-box > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.company_recruit_item .accordion-box > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #fff;
}
.company_recruit_item .accordion-box > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.company_recruit_item .accordion-box > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.company_recruit_item .accordion-box > .ttl.active .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.company_recruit_item .accordion-box > .ttl.active .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.company_recruit_item .accordion-box > .column {
  padding: 0 0 1em;
  background-color: #fff;
  display: none;
}
.company_recruit_item .accordion-box + .accordion-box {
  margin-top: 2em;
}
.company_recruit_item .not {
  font-size: 21px;
  text-align: center;
  padding-top: 1em;
}

/* -------------------------------
	特定商取引法について
-------------------------------- */
.law_ttl_1 .in:before, .law_ttl_1 .in:after {
  height: 13px;
  background: url("../images/law/title-line-law-1.png") no-repeat center center/contain;
}

.law_ttl_2 {
  color: #ffff00;
}
.law_ttl_2 .in:before, .law_ttl_2 .in:after {
  height: 13px;
  background: url("../images/law/title-line-law-2.png") no-repeat center center/contain;
}

/* ---  --- */
.law_content {
  padding: 0 0 50px;
}

/**/
.law_ttl_faq > .innr {
  position: relative;
}
.law_ttl_faq > .innr:before, .law_ttl_faq > .innr:after {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 2em;
  top: 50%;
  margin-top: -1em;
  opacity: 0.2;
  background: url("../images/law/question.svg") no-repeat center center/contain;
}
.law_ttl_faq > .innr:before {
  left: -2em;
  transform: rotate(-20deg);
}
.law_ttl_faq > .innr:after {
  right: -2em;
  transform: rotate(20deg);
}

/* -------------------------------
	アコーディオン
-------------------------------- */
.law_faq {
  min-height: 30vh;
}
.law_faq .accordion-box > .ttl {
  color: #1c8fd0;
  line-height: 1.6;
  padding: 1.2em 3em 1.2em 1em;
  border-radius: 0;
  background-color: #ffff00;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  transform: rotateZ(0.03deg);
}
.law_faq .accordion-box > .ttl .accordion_plus, .law_faq .accordion-box > .ttl .accordion_plus span {
  display: inline-block;
  transition: all 0.4s ease;
}
.law_faq .accordion-box > .ttl .accordion_plus {
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  margin-top: -.6em;
}
.law_faq .accordion-box > .ttl .accordion_plus span {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  left: 0;
  background-color: #D08B1B;
}
.law_faq .accordion-box > .ttl .accordion_plus span:nth-of-type(1) {
  top: 50%;
  transform: rotate(0deg);
}
.law_faq .accordion-box > .ttl .accordion_plus span:nth-of-type(2) {
  top: 50%;
  transform: rotate(90deg);
}
.law_faq .accordion-box > .ttl.active .accordion_plus span:nth-of-type(1) {
  transform: rotate(90deg);
  opacity: 0;
}
.law_faq .accordion-box > .ttl.active .accordion_plus span:nth-of-type(2) {
  transform: rotate(180deg);
}
.law_faq .accordion-box > .column {
  font-weight: 500;
  padding: 1em;
  border-radius: 0;
  background-color: #fff;
}
.law_faq .accordion-box + .accordion-box {
  margin-top: 10px;
}

/* -------------------------------
	GOODS
-------------------------------- */
/* ---  --- */
.goods_users {
  display: flex;
  width: 100%;
  padding-right: 50px;
  background-color: rgba(28, 143, 208, 0.9);
  position: fixed;
  left: 0px;
  bottom: 0;
  z-index: 99;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .goods_users {
    left: 300px;
    width: calc(100% - 300px);
    max-width: 560px;
    padding-right: 0;
  }
}
.goods_users__item {
  font-size: 10px;
  flex: 1 1 0;
  position: relative;
}
.goods_users__item:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background-color: #fff;
  opacity: 0.5;
}
.goods_users__item:last-child:after {
  display: none;
}
.goods_users__item > a {
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  transform: rotateZ(0.03deg);
  display: block;
  height: 50px;
  padding: 12px 10px 0;
  border-radius: 5px;
  transition: color 0.3s ease;
}
.goods_users__item > a i {
  font-size: 1.5em;
  line-height: 1;
  display: block;
  margin: 0 auto;
}
.goods_users__item > a:hover {
  color: #125488;
}

/* ---  --- */
.goods_navi {
  width: 100%;
  padding: 0 20px;
  background-color: rgba(28, 143, 208, 0.2);
  position: relative;
  overflow: hidden;
}
.goods_navi .nav-button {
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  background: #125488;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}
.goods_navi .nav-button.hidden {
  opacity: 0;
}
.goods_navi .prev {
  left: 0;
}
.goods_navi .next {
  right: 0;
}
.goods_navi__inner {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.goods_navi__inner::-webkit-scrollbar {
  display: none;
}
.goods_navi__inner, .goods_navi__inner * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.goods_navi__list {
  display: flex;
  padding: 10px 0;
  margin: 0;
  list-style: none;
}
.goods_navi__list > li {
  flex: none;
  padding: 5px;
}
.goods_navi__list > li > a {
  color: inherit;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5em 1em;
  border-radius: 10em;
  transition: background 0.3s ease;
}
.goods_navi__list > li > a:hover {
  color: inherit;
  background-color: #fff;
}
.goods_navi__list > li.active > a {
  color: #fff;
  background-color: #1c8fd0;
}

/* ---  --- */
.goods_lists {
  padding: 50px 0;
}
.goods_lists__num {
  font-weight: 500;
  text-align: right;
  transform: rotateZ(0.03deg);
}

.goods_lists__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

/**/
.goods_lists__figure {
  height: auto;
  margin-bottom: 10px;
  position: relative;
}
.goods_lists__figure > .photo {
  width: 100%;
  aspect-ratio: 1/1;
}
.goods_lists__figure figcaption {
  transform: rotateZ(0.03deg);
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
}
.goods_lists__figure figcaption .tag {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: normal;
  padding: 0.25em 1em;
  margin: 2px;
  border-radius: 10em;
  background-color: #ccc;
}
.goods_lists__figure figcaption .tag1 {
  color: #ff0000;
  background-color: #ffff00;
}
.goods_lists__figure figcaption .tag2 {
  color: #fff;
  background-color: #000;
}
a .goods_lists__figure > .photo {
  transition: opacity 0.3s ease;
}
a .goods_lists__figure:hover > .photo {
  opacity: 0.65;
}

.goods_lists__column .ttl {
  font-size: 1.142857rem;
  line-height: 1.5;
  margin: 0;
  transform: rotateZ(0.03deg);
}
.goods_lists__column .price {
  text-align: right;
  margin-bottom: 8px;
  transform: rotateZ(0.03deg);
}
.goods_lists__column .price strong {
  font-size: 1.25em;
}
.goods_lists__column form {
  display: flex;
  align-items: center;
  transform: rotateZ(0.03deg);
}
.goods_lists__column form .form_num {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.goods_lists__column form .form_num label {
  white-space: nowrap;
}
.goods_lists__column form .form_num select {
  display: inline-block;
  width: auto;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.5em 1.75em 0.5em 1em;
  outline: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, #fff;
}
.goods_lists__column form .form_num select:focus {
  box-shadow: none !important;
}
.goods_lists__column form button {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  text-align: center;
  margin-left: 10px;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  border: solid 1px #1c8fd0;
  background-color: #1c8fd0;
  cursor: pointer;
}
.goods_lists__column form button .in {
  display: inline-block;
}
.goods_lists__column form button:hover {
  color: #1c8fd0;
  background-color: #fff;
}

/* ---  --- */
.goods_detail_content {
  padding: 50px 0;
}
.goods_detail_content .price {
  font-size: 1.142857rem;
}
.goods_detail_content .price strong {
  font-size: 1.5em;
}
.goods_detail_content .goods_detail__cart {
  border: solid 1px #1c8fd0;
  padding: 15px;
  border-radius: 15px;
}
.goods_detail_content .goods_detail__cart .stock {
  color: #1c8fd0;
  font-size: 1.42587rem;
  text-align: center;
  margin-bottom: 0.5em;
  transform: rotateZ(0.03deg);
}
.goods_detail_content .goods_detail__cart .stock.not {
  color: #aaa;
}
.goods_detail_content .goods_detail__cart .stock.few {
  color: #cc0000;
}
.goods_detail_content .goods_detail__cart form {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateZ(0.03deg);
}
.goods_detail_content .goods_detail__cart form .form_num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.goods_detail_content .goods_detail__cart form .form_num label {
  white-space: nowrap;
}
.goods_detail_content .goods_detail__cart form .form_num select {
  display: inline-block;
  width: auto;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.5em 1.75em 0.5em 1em;
  outline: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, #fff;
}
.goods_detail_content .goods_detail__cart form .form_num select:focus {
  box-shadow: none !important;
}
.goods_detail_content .goods_detail__cart form button {
  color: #fff;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-left: 10px;
  padding: 0.35em 0.5em;
  border-radius: 3px;
  border: solid 1px #1c8fd0;
  background-color: #1c8fd0;
  cursor: pointer;
}
.goods_detail_content .goods_detail__cart form button .in {
  display: inline-block;
}
.goods_detail_content .goods_detail__cart form button:hover {
  color: #1c8fd0;
  background-color: #fff;
}
.goods_detail_content .goods_detail__not_cart {
  border: solid 1px #aaa;
  padding: 15px;
  border-radius: 15px;
}
.goods_detail_content .goods_detail__not_cart p {
  color: #aaa;
  font-size: 1.42857rem;
  text-align: center;
}

.goods_detail_columns {
  border-bottom: solid 8px #1c8fd0;
}

/* -------------------------------
	faq
-------------------------------- */
.faq_contents:after {
  bottom: -100vh;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.contact_ttl_1 .in:before, .contact_ttl_1 .in:after {
  height: 13px;
  background: url("../images/contact/title-line-contact-1.png") no-repeat center center/contain;
}

.contact_conetnts {
  padding-bottom: 50px;
}

#contactform {
  /**/
  /* 共通のスタイル */
  /* フォーカス時のスタイル */
  /* プレス状態のスタイル */
  /* プレースホルダーのスタイル */
  /* selectのデザイン */
}
#contactform input[type="text"], #contactform input[type="email"], #contactform input[type="password"], #contactform input[type="tel"], #contactform select, #contactform textarea {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #98B1C5;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.3s ease;
}
#contactform input[type="text"]:focus, #contactform input[type="email"]:focus, #contactform input[type="password"]:focus, #contactform select:focus, #contactform textarea:focus {
  border-color: #1c8fd0;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
  box-shadow: none !important;
}
#contactform input[type="text"]:active, #contactform input[type="email"]:active, #contactform input[type="password"]:active, #contactform select:active, #contactform textarea:active {
  border-color: #125488;
}
#contactform input[type="text"]::placeholder, #contactform input[type="email"]::placeholder, #contactform input[type="password"]::placeholder, #contactform textarea::placeholder {
  color: #A4ACB4;
  font-style: italic;
}
#contactform select {
  display: inline-block;
  width: auto;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.75em;
  outline: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, #fff;
}
#contactform select:focus {
  box-shadow: none !important;
}
#contactform select.d-block {
  display: block;
  width: 100%;
}
#contactform .checkbox_style_1 {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #98B1C5;
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
  background-color: #fff;
  transition: all 0.3s ease;
}
#contactform input[type="file"] {
  letter-spacing: normal;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #98B1C5;
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
  background-color: #fff;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
#contactform .p-postal-code, #contactform .p-region {
  width: auto !important;
  display: inline !important;
}
#contactform .agree {
  text-align: center;
  display: block;
}

/* フォーム用　table */
.table-contact {
  line-height: 1.5;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.table-contact > tbody {
  display: block;
  border-radius: 15px;
  padding: 20px 15px;
  border: solid 1px var(--text-blue);
}
.table-contact > tbody > tr {
  margin-bottom: 15px;
  display: block;
  transform: rotateZ(0.03deg);
}
.table-contact > tbody > tr:last-child {
  margin-bottom: 0;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  text-align: left;
  display: block;
}
.table-contact > tbody > tr > th {
  padding-left: 1.4em;
  margin-bottom: 5px;
  position: relative;
}
.table-contact > tbody > tr > th:before {
  content: "■";
  position: absolute;
  left: 0.2em;
}
.table-contact > tbody > tr > th.hisu:after {
  content: "【必須】";
  color: #ff0000;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-top: -5px;
}
.table-contact > tbody > tr > td .rei {
  font-weight: 500;
  font-size: 12px;
}

.img-hisu {
  margin: -.2em .5em 0 0;
}

/*  */
.agree {
  text-align: center;
  margin-top: 20px;
}

.buttons {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.buttons .btn {
  width: 260px;
  display: block;
  margin: 0.3125em 0.625em;
  cursor: pointer;
}

.form_note {
  margin: 20px 0;
}
.form_note .column {
  font-weight: 500;
  border: solid 1px #ccc;
  padding: 1.5% 3.4448%;
}

.form_text_1 {
  font-size: 16px;
  text-align: center;
  transform: rotateZ(0.03deg);
}

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
}
#policy .contents {
  padding: 1.5% 3.4448%;
  border: solid 1px #ccc;
  max-height: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
  transform: rotateZ(0.03deg);
}
#policy .contents p, #policy .contents ol {
  font-weight: 500;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* -------------------------------
	cart
-------------------------------- */
/* --- cart flow --- */
.progressbar {
  font-size: 14px;
  margin: 0;
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  counter-reset: step;
  overflow: hidden;
}
.progressbar > li {
  color: #aaa;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  list-style-type: none;
  flex: 0 0 20%;
  padding: 0 0.5em;
  white-space: nowrap;
  position: relative;
}
.progressbar > li:before {
  font-size: 1.5em;
  width: 2em;
  height: 2em;
  content: counter(step);
  counter-increment: step;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 6px auto;
  border-radius: 50%;
  background-color: #eee;
}
.progressbar > li:after {
  width: calc(100% - 1em);
  height: 2px;
  content: "";
  position: absolute;
  display: block;
  background-color: #eee;
  top: calc((1.5em * 2) / 2);
  left: calc(-50% + 1em);
  z-index: -1;
}
.progressbar > li:first-child:after {
  content: none;
}
.progressbar > li.active {
  color: #1c8fd0;
}
.progressbar > li.active:before {
  background-color: #1c8fd0;
  color: #fff;
}
.progressbar > li.active + li:after {
  background-color: #1c8fd0;
}

/* ---  --- */
.cart_contents {
  padding-bottom: 50px;
}

/* ---  --- */
.cart_item {
  padding: 15px 10px;
  border-radius: 15px;
  border: solid 1px #1c8fd0;
}
.cart_item__col {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: dotted 1px #1c8fd0;
}
.cart_item__col .image {
  flex: 0 0 80px;
}
.cart_item__col .image .photo {
  aspect-ratio: 1 / 1;
}
.cart_item__col .column {
  flex: 1 1 0;
  padding: 0 10px;
  transform: rotateZ(0.03deg);
}
.cart_item__col .delete {
  flex: 0 0 30px;
  transform: rotateZ(0.03deg);
}
@media print, screen and (min-width: 768px) {
  .cart_item__col .image {
    flex: 0 0 100px;
  }
}
.cart_item__col .column .ttl {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.cart_item__col .column dl {
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
}
.cart_item__col .column dl > dt, .cart_item__col .column dl > dd {
  margin: 0;
  padding: 0;
}
.cart_item__col .column dl > dt {
  white-space: nowrap;
}
.cart_item__col .column .unit_price {
  color: #999;
  font-weight: 500;
  font-size: 0.92857rem;
  margin: 0;
}
.cart_item__col .column .unit_price dt {
  font-weight: 500;
}
.cart_item__col .column .form {
  display: flex;
  align-items: center;
  transform: rotateZ(0.03deg);
}
.cart_item__col .column .form .form_num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart_item__col .column .form .form_num label {
  white-space: nowrap;
}
.cart_item__col .column .form .form_num select {
  display: inline-block;
  width: auto;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.5em 1.75em 0.5em 1em;
  outline: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, #fff;
}
.cart_item__col .column .form .form_num select:focus {
  box-shadow: none !important;
}
.cart_item__col .column .form button {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  text-align: center;
  margin-left: 10px;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  border: solid 1px #1c8fd0;
  background-color: #1c8fd0;
  cursor: pointer;
}
.cart_item__col .column .form button .in {
  display: inline-block;
}
.cart_item__col .column .form button:hover {
  color: #1c8fd0;
  background-color: #fff;
}
.cart_item__col .delete {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_item__col .delete button {
  color: #aaa;
  font-size: 12px;
  text-align: center;
  border: none;
  padding: 0;
}
.cart_item__col .delete button i {
  font-size: 1.5em;
  display: block;
}
.cart_item__foot dl {
  font-size: 1.142857rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
}
.cart_item__foot dl dt, .cart_item__foot dl dd {
  padding: 0;
  margin: 0;
  transform: rotateZ(0.03deg);
}
.cart_item__foot dl dt {
  font-size: 0.92857rem;
  margin-bottom: 0.25em;
}
.cart_item__foot dl dd {
  margin-left: auto;
}
.cart_item__foot dl.total {
  margin-top: 5px;
}
.cart_item__foot dl.total dd {
  font-size: 1.5em;
}

.cart_foot_button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.cart_foot_button > .col {
  transform: rotateZ(0.03deg);
}
.cart_foot_button > .col .btn {
  font-size: 12px;
  display: block;
  padding: 0.5em 1em;
}
@media print, screen and (min-width: 768px) {
  .cart_foot_button {
    padding: 0 15px;
  }
  .cart_foot_button > .col .btn {
    font-size: 14px;
  }
}

/* ---  --- */
.login_form {
  padding: 30px;
  margin-bottom: 50px;
  border-radius: 20px;
  border: solid 1px #1c8fd0;
  /* 共通のスタイル */
  /* フォーカス時のスタイル */
  /* プレス状態のスタイル */
  /* プレースホルダーのスタイル */
}
.login_form .col {
  margin-bottom: 10px;
  transform: rotateZ(0.03deg);
}
.login_form .col label {
  display: block;
}
.login_form input[type="text"], .login_form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 1px solid #98B1C5;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  transition: all 0.3s ease;
}
.login_form input[type="text"]:focus, .login_form input[type="password"]:focus {
  border-color: #1c8fd0;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
  box-shadow: none !important;
}
.login_form input[type="text"]:active, .login_form input[type="password"]:active {
  border-color: #125488;
}
.login_form input[type="text"]::placeholder, .login_form input[type="password"]::placeholder {
  color: #A4ACB4;
  font-style: italic;
}
.login_form .btn {
  width: 200px;
  display: block;
  margin: 20px auto;
}

/**/
.cart_form2 .cart_route {
  font-size: 1.28752rem;
  transform: rotateZ(0.03deg);
  padding: 15px;
  border-radius: 15px;
  background-color: #E5F3FB;
}
.cart_form2 .cart_route p {
  font-size: 1rem;
  margin: 0;
}

/* ---  --- */
.field-icon {
  color: #555;
  float: right;
  margin-right: 10px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.table-login {
  width: 100%;
  margin: 0 auto 20px;
}
.table-login > tbody > tr > th, .table-login > tbody > tr > td {
  padding: 0;
}
.table-login > tbody > tr > th {
  padding: 10px 0;
}

/* ---  --- */
.cart_payment {
  padding: 15px 10px;
  margin-top: 15px;
  border-radius: 5px;
  display: none;
  background-color: #F3F4F9;
}
.cart_payment .ttl {
  font-size: 1.142857rem;
  border-bottom: dashed 1px #125488;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

/* ---  --- */
.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -5px;
}
.form-row > * {
  padding: 0 5px;
}
.form-row > .col {
  flex: 1 1 0;
}

/* ---  --- */
.cart_buttons {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
}
.cart_buttons > * {
  flex: 1 1 0;
  padding: 0 5px;
}
.cart_buttons > * .btn {
  width: 100%;
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

/* -------------------------------
	mypage
-------------------------------- */
.mypage_navi {
  margin: 0 20px 30px;
}
.mypage_navi > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.mypage_navi > ul > li {
  flex: 0 0 50%;
  padding: 0 5px;
}
.mypage_navi > ul > li > a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 1em 0;
  display: block;
  border-radius: 15px;
  border: solid 1px #ABD9F3;
  background-color: #ABD9F3;
  transition: color 0.3s ease, background 0.3s ease;
}
.mypage_navi > ul > li > a:hover {
  color: #ABD9F3;
  background-color: #fff;
}
.mypage_navi > ul > li.active > a {
  background-color: #1c8fd0;
}

/* ---  --- */
.mypage_content {
  padding-bottom: 50px;
}

/* ---  --- */
.mypage_status__item {
  border: solid 1px rgba(28, 143, 208, 0.5);
  margin-bottom: 15px;
}
.mypage_status__item > .status {
  font-weight: 900;
  font-size: 1.28572rem;
  text-align: center;
  padding: 0.75em;
  border-bottom: solid 1px rgba(28, 143, 208, 0.5);
  background-color: rgba(28, 143, 208, 0.1);
  transform: rotateZ(0.03deg);
}
.mypage_status__item > .column {
  padding: 20px;
}
.mypage_status__item > .column dl {
  font-size: 1.142857rem;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 0;
}
.mypage_status__item > .column dl > dt, .mypage_status__item > .column dl > dd {
  padding: 0;
  margin: 0;
  transform: rotateZ(0.03deg);
}
.mypage_status__item > .column dl > td {
  padding-right: 1em;
  white-space: nowrap;
}
.mypage_status__item > .column dl > dd {
  padding-left: 1em;
  position: relative;
}
.mypage_status__item > .column dl > dd:before {
  content: "：";
  position: absolute;
  left: 0;
}
.mypage_status__item > .foot {
  padding: 1px;
}
.mypage_status__item > .foot .btn {
  color: #fff;
  display: block;
  padding: 1em 2em;
  background-color: #1c8fd0;
  position: relative;
}
.mypage_status__item > .foot .btn:before {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -.5em;
}
.mypage_status__item > .foot .btn:hover {
  color: #1c8fd0;
  background-color: #D2EBF9;
}

/* 
 * スクロールエフェクト（CSS変数対応）
 */
:root {
  --amn-opacity: 0;
  --amn-opacity-active: 1;
  --amn-translateY: 30px;
  --amn-translateY-active: 0;
  --amn-translateX: 30px;
  --amn-translateX-active: 0;
  --amn-transition-duration: 0.7s;
  --amn-transition-ease: ease;
  --amn-mask-transition: 0.5s cubic-bezier(.9,.09,.67,.93);
  --amn-marker-bg: rgba(254,239,68,1);
  --amn-marker-bg-transparent: rgba(254,239,68,0);
  --amn-marker-transition: 3s ease;
}

@media screen {
  /* 横並びの要素を遅延して表示させる */
  .js-row-1 > * {
    opacity: var(--amn-opacity);
    transform: translateY(var(--amn-translateY));
    transition: opacity var(--amn-transition-duration) var(--amn-transition-ease), transform var(--amn-transition-duration) var(--amn-transition-ease);
  }
  .js-row-1 > *.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  /* アニメーション: 上下左右 */
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    opacity: var(--amn-opacity);
    transition: opacity var(--amn-transition-duration) var(--amn-transition-ease), transform var(--amn-transition-duration) var(--amn-transition-ease);
  }

  .amn-fade-up {
    transform: translateY(var(--amn-translateY));
  }
  .amn-fade-up.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--amn-translateY) * -1));
  }
  .amn-fade-down.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateY(var(--amn-translateY-active));
  }

  .amn-fade-left {
    transform: translateX(var(--amn-translateX));
  }
  .amn-fade-left.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateX(var(--amn-translateX-active));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--amn-translateX) * -1));
  }
  .amn-fade-right.is-active {
    opacity: var(--amn-opacity-active);
    transform: translateX(var(--amn-translateX-active));
  }

  /* マスクエフェクト */
  .amn-lr-open {
    opacity: var(--amn-opacity);
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--amn-mask-transition);
  }
  .amn-lr-open.is-active {
    opacity: var(--amn-opacity-active);
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }

  /* マスクアップ */
  .amn-mask-up {
    display: inline-block;
    opacity: var(--amn-opacity);
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--amn-transition-duration) var(--amn-transition-ease);
  }
  .amn-mask-up.is-active {
    opacity: var(--amn-opacity-active);
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }

  /* マーカーエフェクト */
  .amn-marker-yellow {
    background: linear-gradient(to bottom, var(--amn-marker-bg-transparent) 0%, var(--amn-marker-bg-transparent) 0%, var(--amn-marker-bg-transparent) 50%, var(--amn-marker-bg) 50%, var(--amn-marker-bg) 90%, var(--amn-marker-bg-transparent) 90%, var(--amn-marker-bg-transparent) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--amn-marker-transition);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/*
 * シャッターエフェクト
 *
 */
@media screen {
  .amn-shutter {
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #73b400;
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.amn-shutter_lr.is-active {
    opacity: 1;
  }
  .amn-shutter.amn-shutter_lr.is-active .shutter__element {
    animation: shutter2_lr_1 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0s alternate forwards, shutter2_lr_2 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0.7s alternate forwards;
  }
  .amn-shutter.amn-shutter_lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s alternate forwards;
  }
  .amn-shutter.amn-shutter_rl.is-active {
    opacity: 1;
  }
  .amn-shutter.amn-shutter_rl.is-active .shutter__element {
    animation: shutter2_rl_1 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0s alternate forwards, shutter2_rl_2 0.5s cubic-bezier(0.62, 0, 0.46, 1.01) 0.7s alternate forwards;
  }
  .amn-shutter.amn-shutter_rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s alternate forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=module.css.map */
