/*
Theme Name: Welcart Basic Child
Description: Welcart Basic Child Theme
Author: Collne Inc
Template: welcart_basic
Version: 1.0.0
*/
@charset "UTF-8";


/*================================
Reset CSS
================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  color: #000;
  font: inherit;
  font-size: 16px;
  font-size: 16px;
  border-radius: 0;
  -webkit-appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

#root,
#__next {
  isolation: isolate;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

a {
  color: #5486D5;
  text-decoration: none;
  outline: none;
}
@media screen and (min-width: 600px) {
  a {
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 600px) {
  a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
  }
}
a:focus {
  outline: none;
}

ul,
li {
  list-style: none;
  padding: 0;
}

html,
body {
  color: #292929;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(0.0266666667 * var(--vw, 1vw) * 100);
}
@media screen and (min-width: 600px) {
  html,
  body {
    font-size: calc(0.0073206442 * var(--vw, 1vw) * 100);
  }
}
@media screen and (min-width: 1280px) {
  html,
  body {
    font-size: calc(0.0073206442 * var(--vw, 1vw) * 100);
  }
}

._flex {
  display: flex;
}

._grid {
  display: grid;
}

/*================================
margin-top
================================*/
.mt1 {
  margin-top: 1.2rem;
}
@media screen and (min-width: 1400px) {
  .mt1 {
    margin-top: 2rem;
  }
}
.mt2 {
  margin-top: 2.4rem;
}
@media screen and (min-width: 1400px) {
  .mt2 {
    margin-top: 4rem;
  }
}
.mt3 {
  margin-top: 3.6rem;
}
@media screen and (min-width: 1400px) {
  .mt3 {
    margin-top: 6rem;
  }
}
.mt4 {
  margin-top: 4.8rem;
}
@media screen and (min-width: 1400px) {
  .mt4 {
    margin-top: 8rem;
  }
}
.mt5 {
  margin-top: 6rem;
}
@media screen and (min-width: 1400px) {
  .mt5 {
    margin-top: 10rem;
  }
}

/*================================
margin-bottom
================================*/
.mb1 {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 1400px) {
  .mb1 {
    margin-bottom: 2rem;
  }
}
.mb2 {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 1400px) {
  .mb2 {
    margin-bottom: 4rem;
  }
}
.mb3 {
  margin-bottom: 3.6rem;
}
@media screen and (min-width: 1400px) {
  .mb3 {
    margin-bottom: 6rem;
  }
}
.mb4 {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 1400px) {
  .mb4 {
    margin-bottom: 8rem;
  }
}
.mb5 {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1400px) {
  .mb5 {
    margin-bottom: 10rem;
  }
}

/*================================
Layout
================================*/
.l_wrapper {
  width: 100%;
}

.l_container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
}

.l_inner {
  /* width: 31rem; */
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  max-width: 1080px;
}
@media screen and (min-width: 600px) {
  /* .l_inner {
    width: 108.3rem;
  } */
  .l_container {
    margin-top: 100px;
  }
}

/* @media screen and (min-width: 1280px) {
  .l_inner {
    width: 108.3rem;
  }
} */
.l_inner._shop {
  width: 32.5rem;
}
@media screen and (min-width: 600px) {
  .l_inner._shop {
    width: 108.7rem;
  }
}

.l_lgColumn-2 {
  display: block;
}
@media screen and (min-width: 600px) {
  .l_lgColumn-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .l_lgColumn-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*================================
Background
================================*/
._bgBlue_primary {
  background-color: #45B7D2;
}

._bgBlue_secondory {
  background-color: #F0FBFF;
}

/*================================
Hide
================================*/
br._sm_hide {
  display: none;
}
@media screen and (min-width: 1280px) {
  br._sm_hide {
    display: inline;
  }
}
@media screen and (min-width: 600px) {
  br._sm_hide {
    display: inline;
  }
}

@media screen and (min-width: 600px) {
  br._lg_hide {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  br._lg_hide {
    display: none;
  }
}

/*================================
Animation
================================*/
._fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animation_delay-02 {
  animation-delay: 0.2s;
}
.animation_delay-03 {
  animation-delay: 0.2s;
}
.animation_delay-04 {
  animation-delay: 0.4s;
}
.animation_delay-05 {
  animation-delay: 0.4s;
}
.animation_delay-06 {
  animation-delay: 0.4s;
}

.is-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .is-pc {
    display: block;
  }
}

.is-sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .is-sp {
    display: none;
  }
}

/* e_heading-l */
.e_heading-l {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .e_heading-l {
    margin-right: 0;
    margin-left: 0;
  }
}
.e_heading-l .en {
  color: #45B7D2;
  font-size: 5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1em;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .e_heading-l .en {
    font-size: 6rem;
    letter-spacing: 0.078em;
  }
}
.e_heading-l .jp {
  display: inline-block;
  margin-top: 1.2rem;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.e_heading-l._center {
  text-align: center;
}
.e_heading-l._white .en,
.e_heading-l._white .jp {
  color: #FFFFFF;
}

/* e_heading-m */
.e_heading-m {
  display: flex;
  flex-direction: column;
}
.e_heading-m .en {
  color: #45B7D2;
  font-size: 4rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .e_heading-m .en {
    font-size: 6rem;
    letter-spacing: 0.078em;
  }
}
.e_heading-m .jp {
  display: inline-block;
  margin-top: 1.5rem;
  color: #707070;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.e_heading-m._center {
  text-align: center;
}

/* e_heading-s */
.e_heading-s {
  display: flex;
  flex-direction: column;
}
.e_heading-s .en {
  color: #45B7D2;
  font-size: 3.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .e_heading-s .en {
    font-size: 5.5rem;
    letter-spacing: 0.08em;
  }
}
.e_heading-s .jp {
  display: inline-block;
  margin-top: 1.1rem;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .e_heading-s .jp {
    margin-top: 1.3rem;
  }
}
.e_heading-s._center {
  text-align: center;
}
.e_heading-s._white .en,
.e_heading-s._white .jp {
  color: #FFFFFF;
}

/* e_category */
.e_category {
  display: block;
  min-width:auto;
  max-width: 130px;
  padding: 0.3rem 1.2rem 0.5rem 1.2rem;
  padding:8px ;
  border: solid 2px #000;
  border-radius: 50px;
  background-color: #FFFFFF;
  color: #000;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.46em;
  max-width:130px ;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .e_category {
    font-size: 13px;
  }
}

/* e_input */
input.e_input {
  height: 4.8rem;
  padding: 0 1.2rem;
  border: solid 0.1rem #707070;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
input.e_input::-moz-placeholder {
  color: #c1c1c1;
}
input.e_input::placeholder {
  color: #c1c1c1;
}

/* e_button-blue */
.e_button._black {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto !important;
  padding: 0;
  border-radius: 100vh;
  background-color: #000;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  padding: 17px 5px;
  max-width: 300px;
  border: 3px solid #000;
}
@media screen and (max-width: 600px) {
  .e_button._black {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto !important;
    padding: 0;
    border-radius: 100vh;
    background-color: #000;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.44em;
    padding: 15px 5px;
    max-width: 300px;
    border: 3px solid #000;
  }
}
.e_button._black:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

/* e_button-blue */
.e_button._blue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding: 0;
  border-radius: 100vh;
  background-color: #45B7D2;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

/* e_button-gray */
.e_button._gray {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  padding: 0;
  border-radius: 100vh;
  background-color: #E2E2E2;
  color: #292929;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

/* e_linkArrow-l */
.e_linkArrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .e_linkArrow {
    position: relative;
    z-index: 1;
  }
}
.e_linkArrow .arrow {
  position: relative;
  margin-right: 1.3rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .e_linkArrow .arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
}
.e_linkArrow .arrow img {
  display: inline-block;
  width: 3.4rem;
  height: 3.4rem;
}
.e_linkArrow:hover {
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .e_linkArrow:hover .arrow {
    margin-right: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .e_linkArrow:hover .arrow::after {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.e_linkArrow._blue {
  color: #9B9B9B;
}
.e_linkArrow._blue:hover {
  color: #45B7D2;
}
.e_linkArrow._blue:hover .arrow::after {
  background-color: #45B7D2;
}
.e_linkArrow._white {
  color: #FFFFFF;
}
.e_linkArrow._white:hover .arrow::after {
  background-color: #FFFFFF;
}
.e_linkArrow._en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}
.e_linkArrow._left {
  justify-content: flex-start;
}

/* e_linkArrow-l */
.e_linkArrow-l {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .e_linkArrow-l {
    position: relative;
    z-index: 1;
  }
}
.e_linkArrow-l .arrow {
  position: relative;
  margin-right: 1.3rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .e_linkArrow-l .arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
}
.e_linkArrow-l .arrow img {
  display: inline-block;
  width: 4.3rem;
  height: 4.3rem;
}
.e_linkArrow-l:hover {
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .e_linkArrow-l:hover .arrow {
    margin-right: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .e_linkArrow-l:hover .arrow::after {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.e_linkArrow-l._blue {
  color: #9B9B9B;
}
.e_linkArrow-l._blue:hover {
  color: #45B7D2;
}
.e_linkArrow-l._blue:hover .arrow::after {
  background-color: #45B7D2;
}
.e_linkArrow-l._white {
  color: #FFFFFF;
}
.e_linkArrow-l._white:hover .arrow::after {
  background-color: #FFFFFF;
}
.e_linkArrow-l._en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}
.e_linkArrow-l._left {
  justify-content: flex-start;
}

/* c_header */
.c_header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  margin-bottom: 0;
  padding-top: 1.6rem;
  padding-bottom: 3.6rem;
  border: none;
}
@media screen and (min-width: 600px) {
  .c_header {
    padding-top: 2.2rem;
    padding-bottom: 0;
  }
}
.c_header_logo {
  height: 5.7rem;
  margin-left: 1.8rem;
}
@media screen and (min-width: 600px) {
  .c_header_logo {
    height: 8rem;
    margin-left: 3.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_header_logo {
    height: 9.3rem;
    margin-left: 3.5rem;
  }
}
.c_header_logo a {
  transition: opacity 0.5s;
}
.c_header_logo a:hover {
  opacity: 0.5;
}
.c_header_logo a img {
  height: 100%;
  width: auto;
}
.c_headerMenu {
  position: relative;
  padding: 5.3rem 0 3.1rem 4.5rem;
  width: 100%;
  height: auto;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .c_headerMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    height: 100%;
    padding: 0;
    transition: transform 0.5s ease;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenu {
    overflow: hidden;
    align-items: flex-start;
    width: 94.5rem;
    right: 0;
    margin-left: auto;
    padding: 0 0 0 19.4rem;
    background-color: transparent;
  }
}
@media screen and (min-width: 600px) {
  .c_headerMenu::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    width: 125rem;
    height: 125rem;
    border-radius: 50%;
    background-color: #45B7D2;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenu::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    width: 125rem;
    height: 125rem;
    border-radius: 50%;
    background-color: #45B7D2;
  }
}
.c_headerMenu-wrap {
  overflow-y: scroll;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  transform: translateX(100%);
  width: calc(var(--vw, 1vw) * 100);
  background-color: #45B7D2;
  transition: transform 0.5s ease;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .c_headerMenu-wrap {
    overflow: hidden;
    transform: translateX(0);
    height: calc(var(--vh, 1vh) * 100);
    background-color: transparent;
  }
}
@media screen and (min-width: 600px) {
  .c_headerMenu-wrap::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 139, 167, 0.29);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
}
.c_headerMenu-wrap.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.c_headerMenu-wrap.is-open .c_headerMenu {
  transform: translateX(0);
}
.c_headerMenu-wrap.is-open::before {
  opacity: 1;
}
.c_headerMenu_button {
  position: fixed;
  top: 2.1rem;
  right: 1.6rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.6rem;
  height: 7.6rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 600px) {
  .c_headerMenu_button {
    top: 2.7rem;
    right: 3.2rem;
    width: 10.1rem;
    height: 10.1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.11);
    cursor: pointer;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenu_button {
    top: 2.7rem;
    right: 3.2rem;
    width: 10.1rem;
    height: 10.1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.11);
  }
}
.c_headerMenu_button::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 3.4rem;
  background-image: url(../image/common/menu_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .c_headerMenu_button::before {
    width: 4.7rem;
    height: 4.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenu_button::before {
    width: 4.7rem;
    height: 4.6rem;
  }
}
.c_headerMenu_button.is-open::before {
  width: 2.7rem;
  height: 2.7rem;
  background-image: url(../image/common/menu_icon-close.svg);
}
@media screen and (min-width: 600px) {
  .c_headerMenuList:first-of-type {
    margin-right: 13.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList:first-of-type {
    margin-right: 13.8rem;
  }
}
.c_headerMenuList-wrap {
  margin-bottom: 5.6rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuList-wrap {
    display: flex;
    margin-bottom: 12.9rem;
    scale: 1.5;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList-wrap {
    display: flex;
    margin-bottom: 1.9rem;
    scale: 1;
  }
}
.c_headerMenuList_item {
  margin-bottom: 3.9rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuList_item {
    margin-bottom: 3.6rem;
  }
}
.c_headerMenuList_item a {
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_headerMenuList_item a {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuList_item a {
    font-size: 2.5rem;
  }
}
.c_headerMenuList_min {
  margin-top: 1.3rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuList_min {
    margin-top: 1.6rem;
  }
}
.c_headerMenuList_min li {
  margin-bottom: 1.3rem;
}
.c_headerMenuList_min li a {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_headerMenuList_min li a {
    font-size: 1.8rem;
  }
}
.c_headerMenuCta {
  margin-bottom: 2.9rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuCta {
    display: flex;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    margin-bottom: 5.3rem;
    scale: 1.5;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuCta {
    display: flex;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    margin-bottom: 0.3rem;
    scale: 1;
  }
}
.c_headerMenuCta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 28.1rem;
  height: 9.4rem;
  border-radius: 100vh;
  background-color: #FFFFFF;
}
.c_headerMenuCta a._entry {
  margin-bottom: 1.9rem;
  padding-top: 1.9rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuCta a._entry {
    width: 25.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuCta a._entry {
    width: 25.9rem;
  }
}
.c_headerMenuCta a._form {
  padding-top: 1.9rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuCta a._form {
    width: 28.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuCta a._form {
    width: 28.1rem;
  }
}
.c_headerMenuCta a .en {
  color: #45B7D2;
  font-size: 3.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
}
.c_headerMenuCta a .jp {
  display: inline-block;
  margin-top: 1rem;
  color: #45B7D2;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_headerMenuCta a .jp {
    margin-top: 0.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuCta a .jp {
    margin-top: 0.9rem;
  }
}
.c_headerMenuTel {
  margin-bottom: 6.1rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuTel {
    display: flex;
    align-items: flex-end;
    margin-bottom: 6.3rem;
    scale: 1.5;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuTel {
    margin-bottom: 3.3rem;
    scale: 1;
  }
}
.c_headerMenuTel a {
  display: flex;
  color: #FFFFFF;
  font-size: 4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_headerMenuTel a {
    font-size: 5.7rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuTel a {
    font-size: 5.7rem;
    letter-spacing: 0.05em;
  }
}
.c_headerMenuTel a::before {
  content: "";
  display: inline-block;
  width: 2.1rem;
  height: 3.1rem;
  margin-top: 1.5rem;
  margin-right: 0.9rem;
  background-image: url(../image/common/headerMenuTel_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .c_headerMenuTel a::before {
    width: 3rem;
    height: 4.5rem;
    margin-top: 2.1rem;
    margin-right: 1.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuTel a::before {
    width: 3rem;
    height: 4.5rem;
    margin-top: 2.1rem;
    margin-right: 1.2rem;
  }
}
.c_headerMenuTel p {
  margin-top: -0.4rem;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.067em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_headerMenuTel p {
    margin-top: 0;
    margin-bottom: 2.6rem;
    margin-left: 2.1rem;
    line-height: 1.58em;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuTel p {
    margin-top: 0;
    margin-bottom: 2.6rem;
    margin-left: 2.1rem;
    line-height: 1.58em;
    letter-spacing: 0.05em;
  }
}
.c_headerMenuLaw {
  flex-wrap: wrap;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  row-gap: 2.6rem;
}
@media screen and (min-width: 600px) {
  .c_headerMenuLaw {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    scale: 1.5;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuLaw {
    scale: 1;
  }
}
.c_headerMenuLaw_item a {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_headerMenuLaw_item a {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1280px) {
  .c_headerMenuLaw_item a {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}

/* c_footer */
.c_footer {
  padding: 5.5rem 0 9.1rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .c_footer {
    padding: 6.1rem 0 3.9rem 20.6rem;
    background-color: transparent;
  }
}
@media screen and (min-width: 1280px) {
  .c_footer {
    padding: 6.1rem 0 3.9rem 20.6rem;
    background-color: transparent;
  }
}
.c_footer_inner {
  display: grid;
  width: 31.3rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .c_footer_inner {
    display: flex;
    position: relative;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .c_footer_inner {
    display: flex;
    position: relative;
    width: 100%;
  }
}
.c_footerOther {
  grid-row: 4/5;
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 600px) {
  .c_footerOther {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-right: 13.7rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerOther {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-right: 13.7rem;
    margin-bottom: 0;
  }
}
.c_footerOther_logo {
  width: 15.3rem;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 1280px) {
  .c_footerOther_logo {
    margin-bottom: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .c_footerOther_logo {
    margin-bottom: 2.6rem;
  }
}
.c_footerOther_company {
  margin-bottom: 0.8rem;
  color: #292929;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  .c_footerOther_company {
    margin-bottom: 0.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerOther_company {
    margin-bottom: 0.9rem;
  }
}
.c_footerOther_text {
  margin-bottom: 2.1rem;
}
@media screen and (min-width: 600px) {
  .c_footerOther_text {
    margin-bottom: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerOther_text {
    margin-bottom: 1.7rem;
  }
}
.c_footerOther_text p {
  color: #292929;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
.c_footerOther_text p:first-of-type {
  margin-bottom: 1.6rem;
}
.c_footerOther_sns {
  display: flex;
}
.c_footerOther_sns a {
  width: 4rem;
  height: 4rem;
  margin-right: 1.8rem;
}
@media screen and (min-width: 600px) {
  .c_footerOther_sns a {
    width: 3rem;
    height: 3rem;
    margin-right: 1.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerOther_sns a {
    width: 3rem;
    height: 3rem;
    margin-right: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .c_footerMenu {
    margin-top: 0.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerMenu {
    margin-top: 0.7rem;
  }
}
.c_footerMenu_item {
  margin-bottom: 3.6rem;
}
.c_footerMenu_item a {
  color: #292929;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_footerMenu._first {
  grid-row: 1/2;
}
@media screen and (min-width: 600px) {
  .c_footerMenu._first {
    grid-row: auto;
    grid-column: auto;
    margin-right: 7.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerMenu._first {
    grid-row: auto;
    grid-column: auto;
    margin-right: 7.9rem;
  }
}
.c_footerMenu._second {
  grid-row: 2/3;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 600px) {
  .c_footerMenu._second {
    grid-row: 1/2;
    grid-column: 3/4;
    margin-right: 7.5rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerMenu._second {
    grid-row: 1/2;
    grid-column: 3/4;
    margin-right: 7.5rem;
    margin-bottom: 0;
  }
}
.c_footerMenu_min {
  margin-top: 1.3rem;
}
.c_footerMenu_min li {
  margin-bottom: 1.3rem;
}
.c_footerMenu_min li a {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_footerLaw {
  grid-row: 3/4;
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 600px) {
  .c_footerLaw {
    grid-column: 4/5;
    grid-row: 1/2;
    margin-top: 0.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerLaw {
    grid-column: 4/5;
    grid-row: 1/2;
    margin-top: 0.7rem;
  }
}
.c_footerLaw_item {
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 600px) {
  .c_footerLaw_item {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_footerLaw_item {
    margin-bottom: 2rem;
  }
}
.c_footerLaw_item a {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_footer_copyright {
  color: #45B7D2;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_footer_copyright {
    position: absolute;
    bottom: 0.26em;
    right: 18.9rem;
    letter-spacing: 0.22em;
  }
}
@media screen and (min-width: 1280px) {
  .c_footer_copyright {
    position: absolute;
    bottom: 0.26em;
    right: 18.9rem;
    letter-spacing: 0.22em;
  }
}

/* c_subpageHeader */
@media screen and (min-width: 600px) {
  .c_subpageHeader {
    position: relative;
  }
}
.c_subpageHeader_image {
  margin-bottom: 0.9em;
}
@media screen and (min-width: 600px) {
  .c_subpageHeader_image {
    width: 88.4rem;
    height: 40.9rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
  }
  .c_subpageHeader_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c_subpageHeader .e_heading-l {
  width: 31rem;
  margin-top: 1.8rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .c_subpageHeader .e_heading-l {
    position: absolute;
    top: 21.2rem;
    left: calc((var(--vw, 1vw) * 100 - 108.3rem) / 2);
    width: auto;
    margin-top: 0;
  }
}
.c_subpageHeader .e_heading-l._shop {
  width: 32.5rem;
}

/* c_breadcrumb */
.c_breadcrumb {
  position: relative;
  z-index: 1;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  width: 33.9rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .c_breadcrumb {
    -moz-column-gap: 1.4rem;
         column-gap: 1.4rem;
    width: auto;
    margin-right: 4.6rem;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  .c_breadcrumb {
    -moz-column-gap: 1.4rem;
         column-gap: 1.4rem;
    width: auto;
    margin-right: 4.6rem;
    justify-content: flex-end;
  }
}
.c_breadcrumb_item::after {
  content: "〉";
  margin-left: 1rem;
  font-size: 1rem;
}
.c_breadcrumb_item:last-of-type::after {
  display: none;
}
.c_breadcrumb_item a,
.c_breadcrumb_item span {
  color: #717171;
  font-size: 1rem;
  letter-spacing: 0.22em;
  line-height: 1;
}

/* c_contactArea */
.c_contactArea {
  padding: 4.8rem 0;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .c_contactArea {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea {
    padding: 8rem 0;
  }
}
.c_contactArea .e_heading-l {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea .e_heading-l {
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea .e_heading-l {
    margin-bottom: 3.2rem;
  }
}
.c_contactArea .e_heading-l .en {
  font-size: 5rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .c_contactArea .e_heading-l .en {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea .e_heading-l .en {
    font-size: 5.5rem;
  }
}
.c_contactArea .e_heading-l .jp {
  margin-top: 0.7rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea .e_heading-l .jp {
    margin-top: 1.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea .e_heading-l .jp {
    margin-top: 1.1rem;
  }
}
.c_contactArea_inner {
  display: flex;
  flex-direction: column;
  row-gap: 2.1rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea_inner {
    flex-direction: row;
    justify-content: center;
    row-gap: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_inner {
    flex-direction: row;
    justify-content: center;
    row-gap: 0;
  }
}
.c_contactArea_item {
  width: 100%;
  height: 16.1rem;
  border: solid 0.2rem #45B7D2;
  border-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea_item {
    width: 44.9rem;
    height: 21.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_item {
    width: 44.9rem;
    height: 21.1rem;
  }
}
@media screen and (min-width: 600px) {
  .c_contactArea_item._tel {
    margin-right: 4.2rem;
  }
}
.c_contactArea_item._tel a {
  padding-top: 0.8rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea_item._tel a {
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_item._tel a {
    padding-top: 0;
  }
}
.c_contactArea_item._mail a {
  padding-top: 0.4rem;
}
@media screen and (min-width: 600px) {
  .c_contactArea_item._mail a {
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_item._mail a {
    padding-top: 0;
  }
}
.c_contactArea_item._mail a:hover {
  opacity: 1;
}
.c_contactArea_item._mail a:hover span {
  color: #FFFFFF;
  background-color: #45B7D2;
}
.c_contactArea_item._mail a:hover span::before {
  background-image: url(../image/common/button_arrow_white.svg);
}
.c_contactArea_item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c_contactArea_name {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_contactArea_name {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_name {
    font-size: 1.7rem;
  }
}
.c_contactArea_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.3rem;
  color: #45B7D2;
  font-size: 3.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_contactArea_tel {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_tel {
    font-size: 4.2rem;
  }
}
.c_contactArea_tel::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 3rem;
  margin-top: 0.7rem;
  margin-right: 0.6rem;
  background-image: url(../image/common/cantactArea_tel_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c_contactArea_detail {
  color: #707070;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.79em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_contactArea_detail {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_detail {
    font-size: 1.4rem;
  }
}
.c_contactArea_button span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 24rem;
  height: 5.5rem;
  margin: 1.2rem auto 0;
  border-radius: 100vh;
  padding-left: 1.5rem;
  background-color: #DDF6FD;
  color: #45B7D2;
  font-size: 2.3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (min-width: 600px) {
  .c_contactArea_button span {
    width: 26rem;
    height: 5.9rem;
    margin: 2rem auto 0;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_button span {
    width: 26rem;
    height: 5.9rem;
    margin: 2rem auto 0;
    font-size: 2.5rem;
  }
}
.c_contactArea_button span::before {
  content: "";
  width: 3.1rem;
  height: 3.1rem;
  background-image: url(../image/common/button_arrow_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .c_contactArea_button span::before {
    width: 3.4rem;
    height: 3.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_contactArea_button span::before {
    width: 3.4rem;
    height: 3.4rem;
  }
}

/* c_searchArea */
@media screen and (min-width: 600px) {
  .c_searchAreaForm {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
    width: 85rem;
    margin: 0 auto;
  }
}
.c_searchAreaForm_category {
  position: relative;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category {
    width: 100%;
    border: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.3rem;
    margin-bottom: 3.1rem;
  }
}
.c_searchAreaForm_category .arrow {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 1.7rem;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.c_searchAreaForm_category .arrow::before, .c_searchAreaForm_category .arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 0.2rem;
}
.c_searchAreaForm_category .arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.3em;
}
.c_searchAreaForm_category .arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.3em;
}
.c_searchAreaForm_category select {
  width: 100%;
  height: 4.3rem;
  padding: 0 1.9rem;
  border: solid 0.2rem #FFFFFF;
  border-radius: 100vh;
  background-image: none;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category select {
    height: 3.5rem;
    cursor: pointer;
  }
}
.c_searchAreaForm_category select::-ms-expand {
  display: none;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
    margin-right: 2.3rem;
    padding: 0 3.1rem;
    border: solid 0.15rem #FFFFFF;
    border-radius: 100vh;
    background-color: #45B7D2;
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s, background-color 0.3s;
  }
  .c_searchAreaForm_category label._selected {
    background-color: #FFFFFF;
    color: #45B7D2;
    opacity: 1;
  }
  .c_searchAreaForm_category label._selected:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .c_searchAreaForm_category label:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category label input {
    display: none;
  }
}
.c_searchAreaForm_category._sm_hide {
  display: none;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category._sm_hide {
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_category._lg_hide {
    display: none;
  }
}
.c_searchAreaForm_select {
  position: relative;
  margin-bottom: 1.3rem;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_select {
    margin-bottom: 1.7rem;
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_select:nth-of-type(1) {
    width: calc(50% - 1.3rem);
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_select:nth-of-type(2) {
    width: calc(50% - 1.3rem);
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_select:nth-of-type(3) {
    width: 28.4rem;
    margin-bottom: 0;
  }
}
.c_searchAreaForm_select .arrow {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 1.7rem;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.c_searchAreaForm_select .arrow::before, .c_searchAreaForm_select .arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #9B9B9B;
  border-radius: 0.2rem;
}
.c_searchAreaForm_select .arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.3em;
}
.c_searchAreaForm_select .arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.3em;
}
.c_searchAreaForm_select select {
  width: 100%;
  height: 6.3rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #FFFFFF;
  background-image: none;
  color: #45B7D2;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_select select {
    cursor: pointer;
  }
}
.c_searchAreaForm_select select::-ms-expand {
  display: none;
}
.c_searchAreaForm_text {
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_text:nth-of-type(4) {
    width: calc(100% - 28.4rem - 2.6rem);
    margin-bottom: 0;
  }
}
.c_searchAreaForm_text input {
  width: 100%;
  height: 6.3rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c_searchAreaForm_text input::-moz-placeholder {
  color: #9B9B9B;
}
.c_searchAreaForm_text input::placeholder {
  color: #9B9B9B;
}
.c_searchAreaFormConditions {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .c_searchAreaFormConditions {
    margin-top: 3.5rem;
  }
}
.c_searchAreaFormConditions._close {
  width: auto;
}
.c_searchAreaFormConditionsList {
  display: grid;
  padding: 2.3rem 0 4.3rem;
}
@media screen and (min-width: 600px) {
  .c_searchAreaFormConditionsList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c_searchAreaFormConditionsList label {
  position: relative;
  height: 2.4rem;
  margin-bottom: 3.2rem;
  padding-left: 2.4rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.c_searchAreaFormConditionsList label:last-of-type {
  margin-bottom: 0;
}
.c_searchAreaFormConditionsList label input[type=checkbox] {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.c_searchAreaFormConditionsList label input[type=checkbox]::before,
.c_searchAreaFormConditionsList label input[type=checkbox]::after {
  content: "";
  display: inline-block;
}
.c_searchAreaFormConditionsList label input[type=checkbox]::before {
  width: 2.4rem;
  height: 2.4rem;
  border: 0.2rem solid #FFFFFF;
  border-radius: 0;
}
.c_searchAreaFormConditionsList label input[type=checkbox]::after {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  transform: rotate(-45deg);
  width: 1.1rem;
  height: 0.7rem;
  border-bottom: 0.2rem solid #FFFFFF;
  border-left: 0.2rem solid #FFFFFF;
  opacity: 0;
}
.c_searchAreaFormConditionsList label input[type=checkbox]:checked::after {
  opacity: 1;
}
.c_searchAreaFormConditionsList label span {
  margin-left: 1rem;
  line-height: 1;
}
.c_searchAreaFormConditions_button {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
.c_searchAreaFormConditions_button .mark {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.c_searchAreaFormConditions_button .mark::before, .c_searchAreaFormConditions_button .mark::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #45B7D2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c_searchAreaFormConditions_button .mark::before {
  width: 1.3rem;
  height: 0.3rem;
}
.c_searchAreaFormConditions_button .mark::after {
  opacity: 0;
}
.c_searchAreaFormConditions_button._close .mark::after {
  width: 0.3rem;
  height: 1.3rem;
  opacity: 1;
}
.c_searchAreaForm_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.5rem;
  margin-top: 2.2rem;
  padding-right: 1.2rem;
  padding-left: 0;
  border: none;
  border-radius: 100vh;
  background-color: #FFFFFF;
  color: #2EA5C1;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_submit {
    width: 27.7rem;
    margin-left: auto;
    font-size: 2.1rem;
    transition: opacity 0.3s;
  }
}
.c_searchAreaForm_submit::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: 0.2rem;
  margin-right: 1.5rem;
  background-image: url(../image/corporate/searchAreaForm_submit_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_submit::before {
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .c_searchAreaForm_submit:hover {
    opacity: 0.5;
  }
}

/* c_ctaButton */
.c_ctaButton {
  display: grid;
  grid-template-columns: 1fr auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 5.9rem;
}
@media screen and (min-width: 600px) {
  .c_ctaButton {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .c_ctaButton {
    display: none;
  }
}
.c_ctaButton_item._tel {
  border-right: solid 0.2rem #FFFFFF;
}
.c_ctaButton_item._tel a {
  background-color: #45B7D2;
  color: #FFFFFF;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_ctaButton_item._tel a {
    font-size: 5.7rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1280px) {
  .c_ctaButton_item._tel a {
    font-size: 5.7rem;
    letter-spacing: 0.05em;
  }
}
.c_ctaButton_item._tel a::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2.2rem;
  margin-right: 0.7rem;
  background-image: url(../image/common/headerMenuTel_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .c_ctaButton_item._tel a::before {
    width: 3rem;
    height: 4.5rem;
    margin-top: 2.1rem;
    margin-right: 1.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_ctaButton_item._tel a::before {
    width: 3rem;
    height: 4.5rem;
    margin-top: 2.1rem;
    margin-right: 1.2rem;
  }
}
.c_ctaButton_item._entry a {
  background-color: #318AC7;
  padding-left: 4rem;
  padding-right: 3.6rem;
  font-size: 2.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.c_ctaButton_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #FFFFFF;
}

/* c_productList */
.c_productList {
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  grid-row-gap: 30px;
  grid-template-columns: none;
}
@media screen and (min-width: 600px) {
  .c_productList {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    /* grid-row-gap: 6.7rem; */
  }
}
.c_productList_item a {
  color: #292929;
}

.c_productList_item a .c_productList_thumbnail {
  /* margin-bottom: 1.1rem; */
  position: relative;
}
@media screen and (min-width: 600px) {
  .c_productList_item a .c_productList_thumbnail {
    /* margin-bottom: 2.1rem; */
  }
}
.c_productList_item a .c_productList_thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
     border-radius: 20px;
     border: 2px solid #000;
    height: 15rem;
     /* margin-bottom: 17px; */
}
@media screen and (max-width: 1000px) {
  .c_productList_item a .c_productList_thumbnail img {
      height: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .c_productList_item a .c_productList_thumbnail img {
      height: 15rem;
  }
}
.c_productList_item a .e_category {
  /* margin-bottom: 0.6rem; */
  font-size:11px ;
  background: #000;
  padding:7px 20px ;
  border-radius: 12px 0px 12px 0px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .c_productList_item a .e_category {
    font-size:11px ;
    background: #000;
    padding:7px 20px ;
    border-radius: 12px 0px 12px 0px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
  }
}
.c_productList_item .e_button._black {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto !important;
  padding: 0;
  border-radius: 100vh;
  background-color: #000;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  padding: 17px 5px;
  max-width: 300px;
}
.c_productList_title {
  margin: 15px 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.43em;
}
@media screen and (min-width: 600px) {
  .c_productList_title {
    line-height: 1.875em;
    margin: 20px 0 10px;
  }
}
.c_productList_price {
  font-family: "Josefin Sans", sans-serif;
  font-size:24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.c_productList_price .tax {
  display: inline-block;
  color: #000;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  /* .c_productList_price .tax {
    margin-left: -0.4rem;
  } */
}

/* c_recruitList */
.c_recruitList {
  grid-template-columns: 1fr;
  row-gap: 8.1rem;
}
@media screen and (min-width: 600px) {
  .c_recruitList {
    grid-template-columns: repeat(3, 33rem);
    justify-content: space-between;
    row-gap: 10.7rem;
  }
}
.c_recruitList_item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .c_recruitList_item {
    display: flex;
    flex-direction: column;
  }
}
.c_recruitList_item a {
  color: #292929;
}
.c_recruitList_thumbnail {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 20.1rem;
  margin-bottom: 1.4rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 600px) {
  .c_recruitList_thumbnail {
    margin-bottom: 2.1rem;
  }
}
.c_recruitList_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c_recruitListHeader {
  margin-bottom: 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #000;
}
.c_recruitListHeader_category {
  margin-bottom: 0.9rem;
}
@media screen and (min-width: 600px) {
  .c_recruitListHeader_category {
    margin-bottom: 1.2rem;
  }
}
.c_recruitListHeader_title {
  font-size: 1.7rem;
  letter-spacing: 0.12em;
}
.c_recruitListData {
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 600px) {
  .c_recruitListData {
    margin-bottom: 2.5rem;
  }
}
.c_recruitListData_item {
  display: flex;
  margin-bottom: 1.1rem;
}
@media screen and (min-width: 600px) {
  .c_recruitListData_item {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
.c_recruitListData_item:last-of-type {
  margin-bottom: 0;
}
.c_recruitListData_title {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.c_recruitListData_detail {
  width: 24.3rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.78em;
}
@media screen and (min-width: 600px) {
  .c_recruitListData_detail {
    width: 25.1rem;
  }
}
.c_recruitListButton {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (min-width: 600px) {
  .c_recruitListButton {
    margin-top: auto;
  }
}
.c_recruitListButton .e_button {
  width: 100%;
  height: 4.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
.c_recruitListButton .e_button:nth-of-type(1) {
  font-weight: 700;
}
.c_recruitListButton .e_button:nth-of-type(2) {
  font-weight: 400;
}

/* c_newsBlogList */
.c_newsBlogList {
  grid-template-columns: 1fr;
  row-gap: 4.1rem;
}
@media screen and (min-width: 600px) {
  .c_newsBlogList {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    row-gap: 6.9rem;
  }
}
.c_newsBlogList_item {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .c_newsBlogList_item {
    width: 31.4rem;
  }
}
.c_newsBlogList_thumbnail {
  overflow: hidden;
  width: 100%;
  height: 20.1rem;
  margin-bottom: 1.4rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 600px) {
  .c_newsBlogList_thumbnail {
    height: 22rem;
    margin-bottom: 1.4rem;
  }
}
.c_newsBlogList_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c_newsBlogList_category {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 600px) {
  .c_newsBlogList_category {
    margin-bottom: 0.8rem;
    min-width: auto;
  }
}
.c_newsBlogList_title {
  margin-bottom: 0.9rem;
  color: #292929;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.79em;
}
@media screen and (min-width: 1400px) {
  .c_newsBlogList_title {
    margin-bottom: 0.8rem;
  }
}
.c_newsBlogList_date {
  color: #9B9B9B;
  font-size: 1.3rem;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* c_interviewList */
.c_interviewList {
  grid-template-columns: 1fr;
  row-gap: 7.7rem;
  width: 32.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .c_interviewList {
    grid-template-columns: repeat(3, 30rem);
    -moz-column-gap: 5.3rem;
         column-gap: 5.3rem;
    row-gap: 6.1rem;
    width: 108.8rem;
  }
}
.c_interviewList_item {
  width: 100%;
}
.c_interviewList_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .c_interviewList_item:nth-of-type(4), .c_interviewList_item:nth-of-type(5), .c_interviewList_item:nth-of-type(6) {
    margin-left: 8.2rem;
  }
}
@media screen and (min-width: 600px) {
  .c_interviewList_item {
    width: 30rem;
  }
}
.c_interviewList_thumbnail {
  overflow: hidden;
  width: 100%;
  height: 27.4rem;
  margin-bottom: 2.1rem;
  border-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .c_interviewList_thumbnail {
    height: 30.7rem;
    margin-bottom: 3.2rem;
  }
}
.c_interviewList_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.c_interviewList_detail {
  color: #292929;
  margin-bottom: 1.9rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_interviewList_name {
  display: flex;
  flex-direction: column;
  color: #292929;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c_interviewList_name span {
  margin-top: 1.4rem;
  color: #45B7D2;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 1400px) {
  .c_interviewList_name {
    margin-bottom: 0.8rem;
  }
}

/* c_form */
.c_form {
  /* padding-top: 4.1rem;
  padding-bottom: 7.4rem; */
  padding: 10px 0px;
}

.c_form._padding {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .c_form {
    padding-top: 8.2rem;
    /* border-radius: 1.5rem; */
    padding: 30px 0 35px;
    /* background-color: #F0FBFF; */
  }
  .c_formMargin{
    margin-bottom:185px ;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form {
    padding-top: 8.2rem;
    border-radius: 1.5rem;
    background-color: #F0FBFF;
  }
} */
.c_form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
@media screen and (min-width: 600px) {
  .c_form form {
    /* width: 74rem; */
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .c_form form {
    /* width: 74rem; */
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_confirm form {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_confirm form {
    width: 100%;
  }
}
.c_form .error {
  position: absolute;
  bottom: -1.6em;
  font-size: 1.2rem;
  font-weight: 700;
}
.c_form_message {
  margin-bottom:30px;
  font-size: 14px;
  line-height: 1.43em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .c_form_message {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form_message {
    margin-bottom: 8.9rem;
  }
} */
@media screen and (min-width: 600px) {
  .c_form_message br {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_message br {
    display: none;
  }
}
.c_form_message span {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.c_form_item {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .c_form_item {
    margin-bottom: 25px;
  }
}
.formPasswordBox{
  font-size: 13px;
  line-height: 1em;
  text-align: center;
  margin-top: 10px;
}
.formPasswordBox span{
  margin-right: 5px;
}
.formPasswordBox span img{
  margin-right: 0px;
  width: 4px;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .formPasswordBox{
    font-size: 16px;
    margin-top: 15px;
  }
  .formPasswordBox span img{
    width: 6px;
  }
}
.formPrivacyBox{
  font-size: 13px;
  line-height: 1em;
  margin-top: 15px;
}
.formPrivacyBox p{
  text-align: left;
  line-height: 2em;
}
.formPrivacyBox a{
  padding-bottom: 3px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 600px) {
  .formPrivacyBox{
    font-size: 16px;
    margin-top: 30px;
  }
  .formPrivacyBox p{
    text-align: center;
  }
  .formPrivacyBox a{
    padding-bottom: 5px;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form_item {
    margin-bottom: 5.1rem;
  }
} */
.c_form_item.mb0 {
  margin-bottom: 0;
}
.c_form_name {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_form_name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_name {
    margin-bottom: 1.5rem;
  }
}
.c_form_name .required {
  display: inline-block;
  margin-right:5px;
  padding: 2px 5px;
  background-color: #FDD700;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  .c_form_name .required {
    margin-right:10px;
    padding: 3px 9px;
    font-size: 14px;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form_name .required {
    margin-right: 1rem;
  }
} */
.c_form_input {
  position: relative;
}
.c_form_input input[type=text],
.c_form_input input[type=password],
.c_form_input input[type=email],
.c_form_input input[type=tel],
.c_form_input input[type=number],
.c_form_input input[type=search],
.c_form_input input[type=url] {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: solid 2px #000;
  /* font-size: 1.4rem; */
  font-size: 13px;
}
.c_form_input input[type=text]::-moz-placeholder, .c_form_input input[type=password]::-moz-placeholder, .c_form_input input[type=email]::-moz-placeholder, .c_form_input input[type=tel]::-moz-placeholder, .c_form_input input[type=number]::-moz-placeholder, .c_form_input input[type=search]::-moz-placeholder, .c_form_input input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.c_form_input input[type=text]::placeholder,
.c_form_input input[type=password]::placeholder,
.c_form_input input[type=email]::placeholder,
.c_form_input input[type=tel]::placeholder,
.c_form_input input[type=number]::placeholder,
.c_form_input input[type=search]::placeholder,
.c_form_input input[type=url]::placeholder {
  color: #c1c1c1;
}
.c_form_input select {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: solid 2px #000;
  background-color: #FFFFFF;
  background-image: none;
  color: #000;
  font-size: 13px;
  cursor: pointer;
}
.c_form_input textarea {
  /* height: 21.8rem; */
  height:250px;
  padding: 10px 20px;
  border: solid 2px #000;
  font-size: 13px;
  line-height: 1.6em;
}
@media screen and (min-width: 600px) {
  .c_form_input input[type=text],
  .c_form_input input[type=password],
  .c_form_input input[type=email],
  .c_form_input input[type=tel],
  .c_form_input input[type=number],
  .c_form_input input[type=search],
  .c_form_input input[type=url] {
    font-size: 16px;
    padding: 0 20px;
  }
  .c_form_input select {
    font-size: 16px;
    padding: 0 20px;
  }
  .c_form_input textarea {
    font-size: 16px;
    padding: 0 20px;
  }
}
.c_form_input textarea::-moz-placeholder {
  color: #c1c1c1;
}
.c_form_input textarea::placeholder {
  color: #c1c1c1;
}
@media screen and (min-width: 600px) {
  .c_form_input textarea {
    width: 100%;
    height:250px;
    padding: 10px 20px;
    border: solid 2px #000;
    font-size: 16px;
    line-height: 1.6em;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form_input textarea {
    width: 100%;
    height: 30.6rem;
    padding: 1.6rem 2.7rem;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
} */
/* .c_form_input._sm-row {
  display: flex;
  flex-direction: column;
}
.c_form_input._sm-row input {
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 600px) {
  .c_form_input._sm-row input {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._sm-row input {
    margin-bottom: 0;
  }
}
.c_form_input._sm-row input:last-of-type {
  margin-bottom: 0;
} */
.c_form_input._lg-col2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .c_form_input._lg-col2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._lg-col2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.c_form_input._lg-col2 input {
  /* width: 35rem; */
  width: 48%;
}
@media screen and (min-width: 600px) {
  .c_form_input._lg-col2 input {
    /* width: 35rem; */
    width: 48%;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._lg-col2 input {
    /* width: 35rem; */
    width: 48%;
  }
}
.c_form_input._lg-col2 .error:last-of-type {
  left: calc(50% + 0.8rem);
}
@media screen and (min-width: 1280px) {
  .c_form_input._lg-col2 .error:last-of-type {
    left: calc(50% + 2.1rem);
  }
}
.c_form_input._col2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.c_form_input._col2 input {
  width: 14.9rem;
}
@media screen and (min-width: 600px) {
  .c_form_input._col2 input {
    width: 35rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._col2 input {
    width: 35rem;
  }
}
.c_form_input._col2 .error:last-of-type {
  left: calc(50% + 0.8rem);
}
@media screen and (min-width: 1280px) {
  .c_form_input._col2 .error:last-of-type {
    left: calc(50% + 2.1rem);
  }
}
.selectFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 476px;
}
.selectFlex .year{
  width: 134px;
}
.selectFlex .month{
  width: 98px;
  /* position: relative; */
}
.selectFlex .day{
  width: 98px;
}
.c_form_input._select ,
.c_form_input._select._year,
.c_form_input._select._month,
.c_form_input._select._day{
  position: relative;
}

.c_form_input._select._year::before ,
.c_form_input._select._month::before ,
.c_form_input._select._day::before ,
.c_form_input._select::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 0.8rem;
  background-image: url(./images/ico_form.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px auto;
  cursor: pointer;
  pointer-events: none;
  z-index: 1;
}
.c_form_input._select._year::after,
.c_form_input._select._month::after{
  position: absolute;
  display: block;
  content: "";
  background: url(./images/ico_slash.svg) center no-repeat;
  background-size: 100% auto;
  width: 21px;
  height: 43px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right:-45px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .selectFlex {
    max-width: 300px;
  }
  .selectFlex .year{
    width: 95px;
  }
  .selectFlex .month{
    width: 65px;
  }
  .selectFlex .day{
    width: 65px;
  }
  .c_form_input._select._year::after,
  .c_form_input._select._month::after{
    width: 19px;
    height: 34px;
    right:-28px;
  }















}
.c_form_input._radio {
  display: flex;
  -moz-column-gap: 4.7rem;
       column-gap: 4.7rem;
}
.c_form_input._radio .mwform-radio-field label {
  display: flex;
  height: auto;
  cursor: pointer;
}
.c_form_input._radio .mwform-radio-field label input[type=radio] {
  position: relative;
  cursor: pointer;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 600px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio] {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio] {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.c_form_input._radio .mwform-radio-field label input[type=radio]::before,
.c_form_input._radio .mwform-radio-field label input[type=radio]::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.c_form_input._radio .mwform-radio-field label input[type=radio]::before {
  width: 100%;
  height: 100%;
  border: 0.1rem solid #707070;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio]::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio]::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.c_form_input._radio .mwform-radio-field label input[type=radio]::after {
  top: 0.6rem;
  left: 0.6rem;
  width: 1rem;
  height: 1rem;
  background-color: #45B7D2;
  opacity: 0;
}
@media screen and (min-width: 600px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio]::after {
    top: 0.4rem;
    left: 0.4rem;
    background-color: #318AC7;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._radio .mwform-radio-field label input[type=radio]::after {
    top: 0.4rem;
    left: 0.4rem;
    background-color: #318AC7;
  }
}
.c_form_input._radio .mwform-radio-field label input[type=radio]:checked::after {
  opacity: 1;
}
.c_form_input._radio .mwform-radio-field label .mwform-radio-field-text {
  margin-top: 0.4rem;
  margin-left: 1.2rem;
  color: #292929;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_form_input._radio .mwform-radio-field label .mwform-radio-field-text {
    margin-top: 0.2rem;
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._radio .mwform-radio-field label .mwform-radio-field-text {
    margin-top: 0.2rem;
    margin-left: 1.5rem;
  }
}
.c_form_input._birthday {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday {
    justify-content: flex-start;
  }
}
.c_form_input._birthday .year,
.c_form_input._birthday .month,
.c_form_input._birthday .day {
  display: flex;
  align-items: center;
  position: relative;
}
.c_form_input._birthday .year::before,
.c_form_input._birthday .month::before,
.c_form_input._birthday .day::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 0.8rem;
  background-image: url(../image/common/selectArrow_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .year::before,
  .c_form_input._birthday .month::before,
  .c_form_input._birthday .day::before {
    right: 6.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .year::before,
  .c_form_input._birthday .month::before,
  .c_form_input._birthday .day::before {
    right: 6.8rem;
  }
}
.c_form_input._birthday .year::after,
.c_form_input._birthday .month::after,
.c_form_input._birthday .day::after {
  margin-left: 0.9rem;
  color: #3E3E3E;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .year::after,
  .c_form_input._birthday .month::after,
  .c_form_input._birthday .day::after {
    display: inline-block;
    transform: rotate(31deg);
    width: 0.1rem;
    height: 3.8rem;
    margin: 0 2.6rem;
    background-color: #707070;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .year::after,
  .c_form_input._birthday .month::after,
  .c_form_input._birthday .day::after {
    display: inline-block;
    transform: rotate(31deg);
    width: 0.1rem;
    height: 3.8rem;
    margin: 0 2.6rem;
    background-color: #707070;
  }
}
.c_form_input._birthday .year select {
  width: 9.3rem;
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .year select {
    width: 17.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .year select {
    width: 17.2rem;
  }
}
.c_form_input._birthday .year::after {
  content: "年";
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .year::after {
    content: "";
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .year::after {
    content: "";
  }
}
.c_form_input._birthday .month select,
.c_form_input._birthday .day select {
  width: 6.7rem;
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .month select,
  .c_form_input._birthday .day select {
    width: 12.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .month select,
  .c_form_input._birthday .day select {
    width: 12.4rem;
  }
}
.c_form_input._birthday .month::after {
  content: "月";
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .month::after {
    content: "";
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .month::after {
    content: "";
  }
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .day::before {
    right: 1.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .day::before {
    right: 1.4rem;
  }
}
.c_form_input._birthday .day::after {
  content: "日";
}
@media screen and (min-width: 600px) {
  .c_form_input._birthday .day::after {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._birthday .day::after {
    display: none;
  }
}
.c_form_input._zip {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 0.8rem;
}
@media screen and (min-width: 600px) {
  .c_form_input._zip {
    grid-column-gap: 1.5rem;
  }
}
.c_form_input._zip input {
  width: 16.4rem;
  max-width:134px ;
}
@media screen and (min-width: 600px) {
  .c_form_input._zip input {
    width: 20.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_input._zip input {
    width: 20.1rem;
  }
}
.c_form_input._zip button {
  width: 80px;
  height: auto;
  border: none;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.46em;
  cursor: pointer;
  padding: 10px 5px;
}
@media screen and (min-width: 600px) {
  .c_form_input._zip button {
    width: 134px;
    font-size: 16px;
    font-weight: 700;
  }
}
.c_form_agree {
  position: relative;
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .c_form_agree {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .c_form_agree {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.c_form_agree .mwform-checkbox-field label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c_form_agree .mwform-checkbox-field label input[type=checkbox] {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c_form_agree .mwform-checkbox-field label input[type=checkbox]::before,
.c_form_agree .mwform-checkbox-field label input[type=checkbox]::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.c_form_agree .mwform-checkbox-field label input[type=checkbox]::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  border-radius: 0%;
  background-color: #FFFFFF;
}
.c_form_agree .mwform-checkbox-field label input[type=checkbox]::after {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(-45deg);
  width: 1.1rem;
  height: 0.7rem;
  border-bottom: 0.2rem solid #000;
  border-left: 0.2rem solid #000;
  opacity: 0;
}
.c_form_agree .mwform-checkbox-field label input[type=checkbox]:checked::after {
  opacity: 1;
}
.c_form_agree .mwform-checkbox-field label .mwform-checkbox-field-text {
  margin-left: 10px;
  font-size: 13px;
  letter-spacing: 0;
}
.c_form_agree .mwform-checkbox-field label .mwform-checkbox-field-text a {
  padding-bottom: 5px;
  border-bottom: solid 1px #000;
  color: #000;
  font-weight: 500;
  /* transition: opacity 0.3s; */
}
.c_form_agree .mwform-checkbox-field label .mwform-checkbox-field-text a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .c_form_agree .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 16px;
  }
}
.c_form_agree .error {
  bottom: -1.8em;
}
.c_form_submit {
  text-align: center;
}
.c_form_submit input[type=submit] {
  display: inline-block;
  width: 100%;
  height:auto !important;
  margin: 0 auto;
  padding: 0;
  border-radius: 100vh;
  background-color: #000;
  color: #FFFFFF;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  padding: 17px 5px;
  max-width: 300px;
  letter-spacing: 0;
  border: 2px solid #000;
}
@media screen and (min-width: 600px) {
  .c_form_submit input[type=submit] {
    width: 23rem;
    height: 4.5rem;
    font-size: 18px;
  }
}
/* @media screen and (min-width: 1280px) {
  .c_form_submit input[type=submit] {
    width: 38rem;
    height: 6rem;
    margin: 0 auto;
    font-size: 2.1rem;
  }
} */
.c_form_submit input[type=submit]:hover {
  background-color: #fff;
  opacity: 1;
  color: #000;
}
.c_form_back {
  text-align: center;
}
.c_form_back input {
  display: inline-block;
  width: 100%;
  height: auto !important;
  margin: 0 auto;
  padding: 0;
  border-radius: 100vh;
  background-color: #fff;
  color: #000;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
  padding: 17px 5px;
  max-width: 300px;
  letter-spacing: 0;
  border: 2px solid #000;
}
@media screen and (min-width: 600px) {
  .c_form_back input {
    margin-top: 0;
    width: 23rem;
    height: 4.5rem;
    font-size: 18px;
  }
}
.c_form .mw_wp_form_preview .c_form_item {
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_item {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    margin-bottom: 0;
    padding: 30px 0;
    border-bottom: solid 1px #000;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_item {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    margin-bottom: 0;
    padding: 30px 0;
    border-bottom: solid 1px #000;
  }
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_item:first-of-type {
    border-top: solid 1px #000;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_item:first-of-type {
    border-top: solid 1px #000;
  }
}
.c_form .mw_wp_form_preview .c_form_name {
  padding-bottom: 1.1rem;
  border-bottom: solid 1px #000;
  color: #000;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_name {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    color: #000;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_name {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    color: #000;
  }
}
.c_form .mw_wp_form_preview .c_form_name .required {
  display: none;
}
.c_form .mw_wp_form_preview .c_form_input {
  color: #000;
  font-size: 13px;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_input {
    width: 41.3rem;
    color: #000;
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_input {
    width: 41.3rem;
    color: #000;
  }
}
.c_form .mw_wp_form_preview .c_form_input._select::before {
  display: none;
}
.c_form .mw_wp_form_preview .c_form_input._zip::before {
  content: "〒";
}
.c_form .mw_wp_form_preview .c_form_input._birthday {
  justify-content: flex-start;
}
.c_form .mw_wp_form_preview .c_form_input._birthday input {
  padding: 0;
  text-align: center;
}
.c_form .mw_wp_form_preview .c_form_input._birthday::after {
  margin-left: 0.9rem;
  color: #3E3E3E;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday::after {
    display: inline-block;
    transform: rotate(31deg);
    width: 0.1rem;
    height: 3.8rem;
    margin: 0 2.6rem;
    background-color: #707070;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday::after {
    display: inline-block;
    transform: rotate(31deg);
    width: 0.1rem;
    height: 3.8rem;
    margin: 0 2.6rem;
    background-color: #707070;
  }
}
.c_form .mw_wp_form_preview .c_form_input._birthday .year::before,
.c_form .mw_wp_form_preview .c_form_input._birthday .month::before,
.c_form .mw_wp_form_preview .c_form_input._birthday .day::before {
  display: none;
}
.c_form .mw_wp_form_preview .c_form_input._birthday .year::after,
.c_form .mw_wp_form_preview .c_form_input._birthday .month::after,
.c_form .mw_wp_form_preview .c_form_input._birthday .day::after {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .year::after,
  .c_form .mw_wp_form_preview .c_form_input._birthday .month::after,
  .c_form .mw_wp_form_preview .c_form_input._birthday .day::after {
    display: inline-block;
    transform: rotate(0);
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .year::after,
  .c_form .mw_wp_form_preview .c_form_input._birthday .month::after,
  .c_form .mw_wp_form_preview .c_form_input._birthday .day::after {
    display: inline-block;
    transform: rotate(0);
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.c_form .mw_wp_form_preview .c_form_input._birthday .year input {
  width: 9.3rem;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .year input {
    width: 17.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .year input {
    width: 17.2rem;
  }
}
.c_form .mw_wp_form_preview .c_form_input._birthday .year::after {
  content: "/";
}
.c_form .mw_wp_form_preview .c_form_input._birthday .month input,
.c_form .mw_wp_form_preview .c_form_input._birthday .day input {
  width: 6.7rem;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .month input,
  .c_form .mw_wp_form_preview .c_form_input._birthday .day input {
    width: 12.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_input._birthday .month input,
  .c_form .mw_wp_form_preview .c_form_input._birthday .day input {
    width: 12.4rem;
  }
}
.c_form .mw_wp_form_preview .c_form_input._birthday .month::after {
  content: "/";
}
.c_form .mw_wp_form_preview .c_form_input._birthday .day::after {
  display: none;
}
@media screen and (min-width: 600px) {
  .c_form .mw_wp_form_preview .c_form_submit {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .c_form .mw_wp_form_preview .c_form_submit {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
.c_form .mw_wp_form_preview ._confirm-none {
  display: none;
}

/* c_archiveSearch */
.c_archiveSearch {
  position: relative;
}
@media screen and (min-width: 600px) {
  .c_archiveSearch {
    width: 24.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .c_archiveSearch {
    width: 24.7rem;
  }
}
.c_archiveSearch .arrow {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 1.7rem;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.c_archiveSearch .arrow::before, .c_archiveSearch .arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: #45B7D2;
  border-radius: 0.2rem;
}
.c_archiveSearch .arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.3em;
}
.c_archiveSearch .arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.3em;
}
.c_archiveSearch select {
  width: 100%;
  height: 4.3rem;
  padding: 0 1.9rem;
  border: solid 0.1rem #707070;
  border-radius: 100vh;
  background-image: none;
  color: #292929;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
@media screen and (min-width: 600px) {
  .c_archiveSearch select {
    height: 3.5rem;
    cursor: pointer;
  }
}
@media screen and (min-width: 1280px) {
  .c_archiveSearch select {
    height: 3.5rem;
    cursor: pointer;
  }
}
.c_archiveSearch select::-ms-expand {
  display: none;
}

/* c_pageNavi */
.c_pageNavi .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.c_pageNavi .wp-pagenavi a,
.c_pageNavi .wp-pagenavi span {
  display: inline-block;
  color: #B2B2B2;
  font-size: 2rem;
  font-weight: 500;
  line-height: 4.1rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .c_pageNavi .wp-pagenavi a:hover {
    text-decoration: underline;
  }
}
.c_pageNavi .wp-pagenavi a.page,
.c_pageNavi .wp-pagenavi span.current {
  width: 5.7rem;
  height: 4rem;
}
.c_pageNavi .wp-pagenavi span.current {
  color: #45B7D2;
}
.c_pageNavi .wp-pagenavi a.previouspostslink,
.c_pageNavi .wp-pagenavi a.nextpostslink,
.c_pageNavi .wp-pagenavi a.last,
.c_pageNavi .wp-pagenavi a.first {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.c_pageNavi .wp-pagenavi a.previouspostslink::before,
.c_pageNavi .wp-pagenavi a.nextpostslink::before,
.c_pageNavi .wp-pagenavi a.last::before,
.c_pageNavi .wp-pagenavi a.first::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c_pageNavi .wp-pagenavi a.previouspostslink,
.c_pageNavi .wp-pagenavi a.nextpostslink {
  width: 4rem;
}
.c_pageNavi .wp-pagenavi a.previouspostslink::before,
.c_pageNavi .wp-pagenavi a.nextpostslink::before {
  width: 1rem;
  height: 1.7rem;
  background-image: url(../image/common/pageNavi_arrow_01.svg);
}
.c_pageNavi .wp-pagenavi a.last::before,
.c_pageNavi .wp-pagenavi a.first::before {
  width: 1.6rem;
  height: 1.7rem;
  background-image: url(../image/common/pageNavi_arrow_02.svg);
}
.c_pageNavi .wp-pagenavi a.nextpostslink::before,
.c_pageNavi .wp-pagenavi a.last::before {
  transform: rotate(180deg);
}
@media screen and (min-width: 600px) {
  .c_pageNavi .wp-pagenavi a.previouspostslink {
    margin-right: 3.9rem;
  }
}
@media screen and (min-width: 600px) {
  .c_pageNavi .wp-pagenavi a.nextpostslink {
    margin-left: 3.9rem;
  }
}
.c_pageNavi .wp-pagenavi a.last {
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .c_pageNavi .wp-pagenavi a.last {
    margin-left: 1.4rem;
  }
}
.c_pageNavi .wp-pagenavi a.first {
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .c_pageNavi .wp-pagenavi a.first {
    margin-right: 1.4rem;
  }
}

.p_homeMainVisual {
  position: relative;
}
.p_homeMainVisualSlider {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 600px) {
  .p_homeMainVisualSlider {
    margin-bottom: 0;
  }
}
.p_homeMainVisualSlider.swiper {
  height: 57.5rem;
  -webkit-clip-path: circle(39.5rem at 50% 18rem);
          clip-path: circle(39.5rem at 50% 18rem);
}
@media screen and (min-width: 600px) {
  .p_homeMainVisualSlider.swiper {
    width: 94.5rem;
    height: auto;
    margin-left: auto;
    margin-right: 0;
    -webkit-clip-path: circle(62.5rem at 62.5rem 50%);
            clip-path: circle(62.5rem at 62.5rem 50%);
  }
}
@media screen and (min-width: 1280px) {
  .p_homeMainVisualSlider.swiper {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.p_homeMainVisualSlider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p_homeMainVisualSlider .swiper-slide {
  width: 100%;
}
.p_homeMainVisualSlider .swiper-slide picture {
  height: 100%;
}
.p_homeMainVisualSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .p_homeMainVisualSlider .swiper-slide img {
    -o-object-position: center;
       object-position: center;
  }
}
.p_homeMainVisualSlider .progress {
  overflow: hidden;
  position: absolute;
  right: 1rem;
  bottom: 4.9rem;
  transform: rotate(90deg);
  transform-origin: top right;
  z-index: 99;
  width: 8.8rem;
  height: 1.3rem;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 600px) {
  .p_homeMainVisualSlider .progress {
    right: 11.5rem;
    bottom: 4.2rem;
    transform: rotate(0);
    transform-origin: bottom right;
    width: 10.4rem;
    height: 1.5rem;
  }
}
.p_homeMainVisualSlider .progress span {
  --progress: 0;
  position: absolute;
  top: 0;
  left: calc(100% * var(--progress));
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  background-color: #45B7D2;
}
.p_homeMainVisual_text {
  margin-bottom: 9.2rem;
  margin-left: 2.1rem;
}
@media screen and (min-width: 600px) {
  .p_homeMainVisual_text {
    position: absolute;
    top: calc(50% - 5.8rem);
    left: 10.4rem;
    z-index: 1;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.p_homeMainVisual_slogan {
  margin-bottom: 1.3rem;
  color: #45B7D2;
  font-size: 5.2rem;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_homeMainVisual_slogan {
    margin-bottom: 2.8rem;
    font-size: 8rem;
  }
}
.p_homeMainVisual_catchcopy {
  color: #707070;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 1.47em;
}
@media screen and (min-width: 600px) {
  .p_homeMainVisual_catchcopy {
    margin-left: 0.3rem;
    line-height: 2.05em;
  }
}
.p_home_decoration {
  position: absolute;
  bottom: -13.8rem;
  right: 1rem;
  width: 10.3rem;
  height: 12.3rem;
}
@media screen and (min-width: 600px) {
  .p_home_decoration {
    right: auto;
    bottom: -2.7rem;
    left: 33.1rem;
    width: 15.5rem;
    height: 18.4rem;
  }
}
.p_home_decoration-2 {
  position: absolute;
  top: 25.6rem;
  right: 0rem;
  width: 22.8rem;
  height: 16rem;
}
@media screen and (min-width: 600px) {
  .p_home_decoration-2 {
    top: -15.7rem;
    right: 16.6rem;
    width: 28.6rem;
    height: 20rem;
  }
}
.p_home_decoration-3 {
  position: absolute;
  top: -7.3rem;
  left: 2.5rem;
  width: 20.4rem;
  height: 11.7rem;
}
@media screen and (min-width: 600px) {
  .p_home_decoration-3 {
    top: -12.6rem;
    left: 16.3rem;
    width: 29.7rem;
    height: 16.9rem;
  }
}
.p_home_decoration-4 {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_home_decoration-4 {
    display: inline-block;
    position: absolute;
    top: -12.8rem;
    right: 29.3rem;
    transform: rotate(4deg);
    width: 11.2rem;
    height: 14.3rem;
  }
}
.p_homeAbout {
  overflow: hidden;
  position: relative;
  margin-bottom: 8.9rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 15.3rem;
  }
}
.p_homeAbout .e_heading-l {
  margin-bottom: 2.1rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout .e_heading-l {
    margin-top: 14.4rem;
    margin-bottom: 6.2rem;
  }
}
.p_homeAbout .e_heading-l .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_homeAbout .e_heading-l .en {
    font-size: 5.5rem;
    letter-spacing: 0.08em;
  }
}
.p_homeAbout::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16.4rem;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 82.6rem;
  height: 86.7rem;
  border-radius: 50%;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_homeAbout::before {
    top: 23.8rem;
    left: -15.7rem;
    transform: translateX(0);
    width: 245.2rem;
    height: 212rem;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.p_homeAbout::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 11.2rem;
  left: 50%;
  z-index: -2;
  transform: translateX(-50%);
  width: 154.8rem;
  height: 248rem;
  border-radius: 50%;
  background-color: #F0FBFF;
  -webkit-clip-path: inset(50% 0 0 0);
          clip-path: inset(50% 0 0 0);
}
@media screen and (min-width: 600px) {
  .p_homeAbout::after {
    display: none;
  }
}
.p_homeAbout_item {
  position: relative;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item {
    display: flex;
    justify-content: center;
  }
}
.p_homeAbout_item:nth-of-type(1) {
  margin-bottom: 10.2rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(1) {
    margin-bottom: 11.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(1) .p_homeAbout_heading {
    margin-bottom: 4.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(1) .p_homeAbout_image {
    top: -22.6rem;
    left: 0;
    width: 37.3rem;
    margin-bottom: 0;
  }
}
.p_homeAbout_item:nth-of-type(2) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(2) {
    margin-bottom: 4.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(2) .p_homeAbout_heading {
    margin-bottom: 2rem;
  }
}
.p_homeAbout_item:nth-of-type(2) .p_homeAbout_image {
  margin-bottom: 2.9rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_item:nth-of-type(2) .p_homeAbout_image {
    top: -37.6rem;
    right: 0;
    width: 32rem;
    margin-bottom: 0;
  }
}
.p_homeAbout_image {
  width: 32rem;
  height: auto;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_image {
    position: absolute;
  }
}
.p_homeAbout_image._right {
  margin-left: auto;
}
.p_homeAbout_heading {
  margin-bottom: 1.6rem;
  color: #000000;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.81em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_heading {
    font-size: 2.3rem;
    line-height: 1.96em;
  }
}
.p_homeAbout_detail {
  width: 31rem;
  margin: 0 auto;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_homeAbout_detail {
    width: 53.7rem;
    line-height: 2.29em;
    text-align: center;
  }
}
.p_homeAboutImages {
  margin-top: 6.9rem;
}
@media screen and (min-width: 600px) {
  .p_homeAboutImages {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    margin-top: 0;
  }
}
.p_homeAboutImages_item:nth-of-type(1) {
  width: 32.2rem;
  margin-right: auto;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 600px) {
  .p_homeAboutImages_item:nth-of-type(1) {
    width: 40.1rem;
    margin-bottom: 0;
  }
}
.p_homeAboutImages_item:nth-of-type(2) {
  width: 32rem;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .p_homeAboutImages_item:nth-of-type(2) {
    width: 40.7rem;
    margin-top: -4.4rem;
  }
}
.p_homeNewsBlog {
  position: relative;
  margin-bottom: 8.8rem;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog {
    overflow: hidden;
    margin-bottom: 12.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 4.6rem;
    left: -62rem;
    z-index: -2;
    width: 245.2rem;
    height: 212rem;
    border-radius: 50%;
    background-color: #F0FBFF;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.p_homeNewsBlog_inner {
  width: 34.2rem;
  padding-top: 3.4rem;
  padding-bottom: 4.1rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog_inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    width: 130.6rem;
    padding: 5.9rem 10.2rem 5.3rem 16.3rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}
.p_homeNewsBlog_inner .e_heading-l {
  margin-left: 3.5rem;
  margin-bottom: 2.9rem;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog_inner .e_heading-l {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 0.8rem;
    margin-bottom: 4.3rem;
    margin-left: 0;
  }
}
.p_homeNewsBlog_inner .e_heading-l .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog_inner .e_heading-l .en {
    font-size: 5.5rem;
    letter-spacing: 0.08em;
  }
}
.p_homeNewsBlogList {
  width: 28.2rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 61.9rem;
  }
}
.p_homeNewsBlogList_item {
  border-top: solid 0.1rem rgba(255, 255, 255, 0.59);
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_item:last-of-type {
    border-bottom: solid 0.1rem rgba(255, 255, 255, 0.59);
  }
}
.p_homeNewsBlogList_item a {
  display: block;
  padding: 1.4rem 0 1rem;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_item a {
    display: flex;
    align-items: center;
    padding: 2.8rem 0.8rem 2.8rem 0;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_item a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
.p_homeNewsBlogList_category {
  display: inline-block;
  min-width: 8.4rem;
  max-width: 100%;
  padding: 0.3rem 1.1rem 0.4rem 1.3rem;
  border: solid 0.1rem #45B7D2;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  color: #458BD2;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_category {
    min-width: 8.8rem;
    margin-right: 1.7rem;
    padding: 0.6rem 1.1rem 0.5rem 1.3rem;
  }
}
.p_homeNewsBlogList_date {
  margin-right: 0.4rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_date {
    margin-right: 1.7rem;
  }
}
.p_homeNewsBlogList_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.4rem;
  margin-bottom: 0.9rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.64em;
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlogList_title {
    -webkit-line-clamp: 1;
    width: 40.7rem;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
}
.p_homeNewsBlog .e_linkArrow-l {
  margin-top: 1.7rem;
  margin-left: calc((100% - 28.2rem) / 2 + 0.2rem);
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog .e_linkArrow-l {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: start;
    margin-top: 0;
    margin-left: 0;
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeNewsBlog .e_linkArrow-l::before {
    width: 3.4rem;
    height: 3.4rem;
    margin-right: 1rem;
  }
}
.p_homeInterview {
  overflow: hidden;
  position: relative;
  padding-top: 7.7rem;
  padding-bottom: 6.3rem;
}
.p_homeInterview::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 82.6rem;
  height: 86.7rem;
  border-radius: 50%;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_homeInterview::before {
    top: 14rem;
    left: calc(50% - 39.8rem);
    width: 245.2rem;
    height: 212rem;
  }
}
.p_homeInterview_message {
  width: 31rem;
  margin: 2.4rem auto 2.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_homeInterview_message {
    width: auto;
    margin: 3rem auto 3.2rem;
    text-align: center;
  }
}
.p_homeInterviewSlider {
  margin-bottom: 3.8rem;
}
@media screen and (min-width: 600px) {
  .p_homeInterviewSlider {
    margin-bottom: 6.2rem;
  }
}
.p_homeInterviewSlider .swiper-slide {
  width: 25rem;
  margin: 0 0.7rem;
}
@media screen and (min-width: 600px) {
  .p_homeInterviewSlider .swiper-slide {
    width: 30rem;
    margin: 0 2.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeInterviewSlider .swiper-slide .c_interviewList_item {
    margin: 0 auto;
  }
}
.p_homePickUp {
  overflow: hidden;
  position: relative;
  margin-bottom: 7.3rem;
  padding-top: 6.4rem;
  padding-bottom: 7.8rem;
}
@media screen and (min-width: 600px) {
  .p_homePickUp {
    margin-bottom: 20rem;
    padding-top: 9.4rem;
    padding-bottom: 15.5rem;
  }
}
.p_homePickUp::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 154.8rem;
  height: 248rem;
  border-radius: 50%;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_homePickUp::before {
    width: 245.2rem;
    height: 140.1rem;
  }
}
.p_homePickUp_inner {
  width: 31.4rem;
  margin: 0 auto;
  padding: 3.5rem 2.6rem 5.7rem;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    width: 111.5rem;
    padding: 4.8rem 6.2rem 6.2rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .e_heading-l .en {
    font-size: 5rem;
  }
}
.p_homePickUp_inner .c_archiveSearch {
  margin-top: 2.8rem;
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .c_archiveSearch {
    display: none;
  }
}
.p_homePickUp_inner .c_recruitList {
  row-gap: 3.8rem;
  margin-bottom: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .c_recruitList {
    grid-template-columns: repeat(4, auto);
    margin-top: 3.8rem;
    margin-bottom: 9.2rem;
  }
}
.p_homePickUp_inner .c_recruitList-wrap {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .c_recruitList-wrap {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.p_homePickUp_inner .c_recruitList-wrap.is-active {
  display: block;
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .c_recruitList-wrap.is-active {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .p_homePickUp_inner .c_recruitList_item {
    width: 22.3rem;
  }
}
.p_homePickUp_inner .c_recruitList_thumbnail {
  height: 14.8rem;
  margin-bottom: 1.1rem;
}
.p_homePickUp_inner .c_recruitList:nth-of-type(n+3) {
  display: none;
}
.p_homePickUp_inner .c_recruitListHeader {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p_homePickUp_inner .c_recruitListHeader_category {
  margin-bottom: 0.7rem;
}
.p_homePickUp_inner .c_recruitListHeader_title {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.64em;
}
.p_homePickUp_inner .c_recruitListHeader_date {
  color: #9B9B9B;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
.p_homePickUpCategory {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_homePickUpCategory {
    display: flex;
    justify-content: flex-end;
    align-self: end;
  }
}
.p_homePickUpCategory_item {
  margin-right: 2.8rem;
}
@media screen and (min-width: 600px) {
  .p_homePickUpCategory_item label {
    display: inline-block;
    color: #9B9B9B;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    cursor: pointer;
  }
}
.p_homePickUpCategory_item:last-of-type {
  margin-right: 0;
}
.p_homePickUp input[type=radio] {
  display: none;
}
.p_homePickUp #tab-all:checked ~ .p_homePickUpCategory #button-all,
.p_homePickUp #tab-part-time:checked ~ .p_homePickUpCategory #button-part-time,
.p_homePickUp #tab-intern:checked ~ .p_homePickUpCategory #button-intern,
.p_homePickUp #tab-eneral-dispatch:checked ~ .p_homePickUpCategory #button-eneral-dispatch,
.p_homePickUp #tab-paid:checked ~ .p_homePickUpCategory #button-paid,
.p_homePickUp #tab-new-graduate:checked ~ .p_homePickUpCategory #button-new-graduate,
.p_homePickUp #tab-scheduled-dispatch:checked ~ .p_homePickUpCategory #button-scheduled-dispatch {
  color: #45B7D2;
}
.p_homePickUp #tab-all:checked ~ #recruit-all,
.p_homePickUp #tab-part-time:checked ~ #recruit-part-time,
.p_homePickUp #tab-intern:checked ~ #recruit-intern,
.p_homePickUp #tab-eneral-dispatch:checked ~ #recruit-eneral-dispatch,
.p_homePickUp #tab-paid:checked ~ #recruit-paid,
.p_homePickUp #tab-new-graduate:checked ~ #recruit-new-graduate,
.p_homePickUp #tab-scheduled-dispatch:checked ~ #recruit-scheduled-dispatch {
  display: grid;
}
.p_homeCompany {
  padding-bottom: 8.7rem;
}
.p_homeCompany_inner {
  flex-direction: column;
  width: 31rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_homeCompany_inner {
    flex-direction: row;
    width: 108.8rem;
  }
}
.p_homeCompany_image {
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 600px) {
  .p_homeCompany_image {
    width: 55.7rem;
    margin-right: 6.1rem;
  }
}
.p_homeCompany_text .e_heading-l .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_homeCompany_text .e_heading-l .en {
    font-size: 5.5rem;
    letter-spacing: 0.08em;
  }
}
.p_homeCompanyLink {
  display: flex;
  flex-direction: column;
  row-gap: 5.2rem;
  margin-top: 3.7rem;
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink {
    row-gap: 5.5rem;
    margin-top: 3.9rem;
  }
}
.p_homeCompanyLink_item {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.p_homeCompanyLink_item a {
  display: flex;
  position: relative;
}
.p_homeCompanyLink_item a .arrow {
  position: relative;
  width: 4.3rem;
  height: 4.3rem;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink_item a .arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #45B7D2;
    transition: all 0.3s ease;
  }
}
.p_homeCompanyLink_item a .arrow img {
  display: inline-block;
}
.p_homeCompanyLink_item a:hover {
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink_item a:hover .arrow {
    margin-right: 2.6rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink_item a:hover .arrow::after {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.p_homeCompanyLink_item a .en {
  color: #45B7D2;
  font-size: 2.1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink_item a .en {
    font-size: 2.5rem;
  }
}
.p_homeCompanyLink_item a .jp {
  display: inline-block;
  margin-top: 0.8rem;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .p_homeCompanyLink_item a .jp {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.p_homeCompanyLink_text {
  display: flex;
  flex-direction: column;
}
.p_homeSearch {
  padding: 4.4rem 0 9.1rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_homeSearch {
    padding: 6.1rem 0 6rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeSearch .e_heading-l {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding-left: 5.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_homeSearch .e_heading-l .en {
    font-size: 6rem;
  }
}
.p_homeSearch .e_heading-l .jp {
  margin-top: 0.6rem;
}
@media screen and (min-width: 600px) {
  .p_homeSearch .e_heading-l .jp {
    margin-bottom: 0.8rem;
    margin-left: 1.9rem;
  }
}
.p_homeSearch_description {
  margin-top: 2rem;
  margin-bottom: 2.9rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_homeSearch_description {
    margin-bottom: 4.4rem;
    margin-top: 1.6rem;
    line-height: 2.1em;
    text-align: center;
  }
}

.p_about .l_container {
  margin-top: 4.9rem;
}
@media screen and (min-width: 600px) {
  .p_about .l_container {
    margin-top: 6.6rem;
  }
}
.p_aboutTop {
  margin-bottom: 15.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutTop {
    position: relative;
    margin-bottom: 21.4rem;
  }
  .p_aboutTop::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 151.3rem;
    background-image: url(../image/corporate/xl_aboutTop_bg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.p_aboutTop_heading {
  margin-bottom: 1rem;
  color: #43AECA;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.48em;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .p_aboutTop_heading {
    margin-bottom: 2.6rem;
    font-size: 3.5rem;
    line-height: 1.62em;
    text-align: center;
  }
}
.p_aboutTop_description {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_aboutTop_description {
    line-height: 2.74em;
    text-align: center;
  }
}
.p_aboutFeature {
  margin-bottom: 7.8rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature {
    margin-bottom: 34.9rem;
  }
}
.p_aboutFeature_item {
  position: relative;
  width: 34.2rem;
  background-color: #43AECA;
}
.p_aboutFeature_item._first {
  margin-bottom: 15.4rem;
  padding-top: 26rem;
  padding-bottom: 3.9rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first {
    display: flex;
    flex-direction: row-reverse;
    width: 121.5rem;
    margin-bottom: 14.6rem;
    padding-left: 13.9rem;
    padding-top: 0;
    padding-bottom: 3.9rem;
  }
}
.p_aboutFeature_item._first .p_aboutFeature_image {
  position: absolute;
  width: 34.3rem;
  height: 33.4rem;
  top: -10.8rem;
  right: calc(var(--vw, 1vw) * -100 + 34.2rem);
  width: 34.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first .p_aboutFeature_image {
    position: relative;
    top: auto;
    right: auto;
    width: 57.5rem;
    height: 47.8rem;
    margin-top: -12.3rem;
  }
}
.p_aboutFeature_item._first .p_aboutFeature_image .first,
.p_aboutFeature_item._first .p_aboutFeature_image .second {
  position: absolute;
}
.p_aboutFeature_item._first .p_aboutFeature_image .first {
  top: 0;
  left: 0;
  width: 24.3rem;
  height: 27.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first .p_aboutFeature_image .first {
    width: 31.7rem;
    height: 35.7rem;
  }
}
.p_aboutFeature_item._first .p_aboutFeature_image .second {
  right: 0;
  bottom: 0;
  width: 23rem;
  height: 16.7rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first .p_aboutFeature_image .second {
    width: 33.7rem;
    height: 24.5rem;
  }
}
.p_aboutFeature_item._first .p_aboutFeature_text {
  padding-right: 2.5rem;
  padding-left: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first .p_aboutFeature_text {
    flex: 1;
    margin-top: 7.7rem;
    padding-right: 7.7rem;
    padding-left: 4.3rem;
    white-space: nowrap;
  }
}
.p_aboutFeature_item._first .p_aboutFeature_illust {
  position: absolute;
  top: 14.3rem;
  left: 3.1rem;
  width: 10.2rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._first .p_aboutFeature_illust {
    top: -4rem;
    right: 13.3rem;
    left: auto;
    width: 14.7rem;
  }
}
.p_aboutFeature_item._second {
  margin-left: auto;
  padding-top: 25.9rem;
  padding-bottom: 5rem;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second {
    display: flex;
    align-items: center;
    width: 117.1rem;
    margin-bottom: 0;
    padding-right: 13.5rem;
    padding-top: 0;
    padding-bottom: 3.7rem;
  }
}
.p_aboutFeature_item._second .p_aboutFeature_image {
  position: absolute;
  width: 34.3rem;
  height: 33.4rem;
  top: -10.8rem;
  left: calc(var(--vw, 1vw) * -100 + 34.2rem);
  width: 34.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second .p_aboutFeature_image {
    position: relative;
    top: auto;
    left: auto;
    width: 59.8rem;
    height: 38.1rem;
    margin-top: -9.4rem;
  }
}
.p_aboutFeature_item._second .p_aboutFeature_image .first,
.p_aboutFeature_item._second .p_aboutFeature_image .second {
  position: absolute;
}
.p_aboutFeature_item._second .p_aboutFeature_image .first {
  top: 0;
  right: 0;
  width: 24.3rem;
  height: 27.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second .p_aboutFeature_image .first {
    width: 31.7rem;
    height: 35.7rem;
  }
}
.p_aboutFeature_item._second .p_aboutFeature_image .second {
  bottom: 0;
  left: 0;
  width: 23rem;
  height: 16.7rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second .p_aboutFeature_image .second {
    width: 33.7rem;
    height: 24.5rem;
  }
}
.p_aboutFeature_item._second .p_aboutFeature_text {
  padding-right: 3.2rem;
  padding-left: 2.5rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second .p_aboutFeature_text {
    flex: 1;
    margin-top: 4.8rem;
    padding-right: 3.7rem;
    padding-left: 8.7rem;
  }
}
.p_aboutFeature_item._second .p_aboutFeature_illust {
  position: absolute;
  top: 14.3rem;
  right: 2.1rem;
  width: 10.8rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_item._second .p_aboutFeature_illust {
    width: 15.6rem;
    top: auto;
    right: 11.7rem;
    bottom: 2.1rem;
  }
}
.p_aboutFeature_text {
  color: #FFFFFF;
}
.p_aboutFeature_heading {
  margin-bottom: 1.4rem;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_heading {
    margin-bottom: 2.3rem;
    font-size: 2.7rem;
  }
}
.p_aboutFeature_description {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_aboutFeature_description {
    line-height: 2.28em;
  }
}
.p_aboutFlow {
  overflow: hidden;
  position: relative;
  padding-bottom: 1.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow {
    padding-bottom: 11.7rem;
  }
}
.p_aboutFlow::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 28.8rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 199rem;
  background-image: url(../image/corporate/sm_aboutFlow_bg.svg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow::before {
    top: 30.1rem;
    height: 177rem;
    background-image: url(../image/corporate/xl_aboutFlow_bg.svg);
  }
}
@media screen and (min-width: 1280px) {
  .p_aboutFlow::before {
    height: 163.1rem;
  }
}
.p_aboutFlow_heading {
  position: relative;
  z-index: -1;
  width: 28.8rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_heading {
    width: 84.9rem;
  }
}
.p_aboutFlow_start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.6rem;
  height: 6rem;
  margin: -5.7rem auto 0;
  border: solid 0.3rem #43AECA;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
  color: #45B7D2;
  font-size: 3.3rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_start {
    width: 15.9rem;
    height: 9.5rem;
    margin: 5.3rem 0 0 18rem;
  }
}
.p_aboutFlow_item {
  position: relative;
}
.p_aboutFlow_item._first {
  margin-bottom: 7.1rem;
  padding-top: 39.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._first {
    margin-top: -2.4rem;
    margin-bottom: 12.7rem;
    padding-top: 0;
  }
}
.p_aboutFlow_item._first .p_aboutFlowText {
  height: auto;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._first .p_aboutFlowText_heading {
    margin-left: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._first .p_aboutFlowText_detail {
    margin-left: -1.6rem;
  }
}
.p_aboutFlow_item._first .p_aboutFlowTextWhat_heading {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.p_aboutFlow_item._first .p_aboutFlowTextWhat_heading::before, .p_aboutFlow_item._first .p_aboutFlowTextWhat_heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -2em;
  width: 1.3rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: #45B7D2;
}
.p_aboutFlow_item._first .p_aboutFlowTextWhat_heading::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.p_aboutFlow_item._first .p_aboutFlowTextWhat_heading._close::after {
  transform: rotate(0);
}
.p_aboutFlow_item._second {
  margin-bottom: 18.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._second {
    display: flex;
    align-items: center;
    margin-bottom: 13.6rem;
  }
}
.p_aboutFlow_item._second .p_aboutFlowText {
  margin-bottom: 2.3rem;
  padding-bottom: 3.1rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._second .p_aboutFlowText {
    width: 53.4rem;
    margin: 0 0 0 17.6rem;
    padding-top: 5.4rem;
    padding-bottom: 5.2rem;
  }
}
.p_aboutFlow_item._second .p_aboutFlowTextWhat {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._second .p_aboutFlowTextWhat {
    display: block;
    width: 100%;
    margin: 2.3rem auto 0;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._second .p_aboutFlowDescription {
    flex: 1;
    margin-left: 5.2rem;
    margin-top: -0.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._second .p_aboutFlowDescription_detail {
    display: flex;
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
    margin-bottom: 1.6rem;
  }
}
.p_aboutFlow_item._third {
  margin-bottom: 4.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._third {
    margin-bottom: 11rem;
  }
}
.p_aboutFlow_item._third .p_aboutFlowText {
  margin-bottom: 2.3rem;
  padding-top: 2.9rem;
  padding-bottom: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._third .p_aboutFlowText {
    width: 63rem;
    margin: 0 0 5.6rem 57.1rem;
    padding-top: 4.7rem;
    padding-bottom: 5.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._third .p_aboutFlowDescription {
    text-align: center;
    margin-left: 0;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._third .p_aboutFlowDescription_heading {
    font-size: 2.3rem;
    letter-spacing: 0.08em;
    line-height: 1.74em;
    margin-bottom: 0.8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._third .p_aboutFlowDescription_detail p {
    font-size: 1.7rem;
  }
}
.p_aboutFlow_item._fourth .p_aboutFlowText {
  margin-bottom: 2.5rem;
  padding-top: 3.2rem;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._fourth .p_aboutFlowText {
    width: 64.4rem;
    margin: 0 auto 7rem 40.3rem;
    padding-top: 4.7rem;
    padding-bottom: 5.1rem;
  }
}
.p_aboutFlow_item._fourth .p_aboutFlowText_heading span {
  display: block;
  margin-top: 0.6rem;
  font-size: 2.3rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_item._fourth .p_aboutFlowText_heading span {
    margin-top: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
}
.p_aboutFlow_illust {
  position: absolute;
}
.p_aboutFlow_illust._first {
  width: 25rem;
  top: 3rem;
  left: 8rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_illust._first {
    width: 26.7rem;
    top: -4.8rem;
    left: 45.5rem;
  }
}
.p_aboutFlow_illust._second {
  width: 26.7rem;
  top: 20.3rem;
  left: 2.9rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_illust._second {
    width: 38.8rem;
    top: 14.4rem;
    left: 20.6rem;
  }
}
.p_aboutFlow_illust._third {
  width: 27.3rem;
  top: -13.3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .p_aboutFlow_illust._third {
    width: 44.7rem;
    top: 2rem;
    left: 17.7rem;
    transform: none;
  }
}
.p_aboutFlowText {
  width: 33rem;
  margin: 0 auto;
  padding: 3.1rem 0 3.9rem;
  border-radius: 1.5rem;
  border: solid 0.3rem #43AECA;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowText {
    width: 50.7rem;
    margin: 0 0 0 69.6rem;
    padding: 4rem 0 3.8rem;
  }
}
.p_aboutFlowText_heading {
  color: #43AECA;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowText_heading {
    font-size: 3.1rem;
  }
}
.p_aboutFlowText_heading br._sm_hide {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowText_heading br._sm_hide {
    display: inline;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlowText_heading br._lg_hide {
    display: none;
  }
}
.p_aboutFlowText_detail {
  margin-top: 1.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.79em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowText_detail {
    margin-top: 1.6rem;
  }
}
.p_aboutFlowTextWhat {
  width: 25.2rem;
  margin: 3.6rem auto 0;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowTextWhat {
    margin: 3.6rem auto 0 13.8rem;
  }
}
.p_aboutFlowTextWhat_heading {
  margin-bottom: 1.5rem;
  color: #43AECA;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p_aboutFlowTextWhat_detail {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.05em;
}
.p_aboutFlowTextWhat_detail li {
  text-indent: -1rem;
  margin-bottom: 1rem;
}
.p_aboutFlowDescription {
  margin-left: 2.3rem;
}
.p_aboutFlowDescription_heading {
  color: #43AECA;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.56em;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowDescription_heading {
    margin-bottom: 0.6rem;
  }
}
.p_aboutFlowDescription_detail {
  margin-bottom: 2.2rem;
}
.p_aboutFlowDescription_detail p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.14em;
}
.p_aboutFlowDescription_detail p br._sm_hide {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowDescription_detail p br._sm_hide {
    display: inline;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlowDescription_detail p br._lg_hide {
    display: none;
  }
}
.p_aboutFlowDescription_last {
  color: #43AECA;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowDescription_last {
    text-align: left;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion {
    display: grid;
    grid-template-columns: repeat(2, auto);
    row-gap: 5.4rem;
    padding-left: 1.8rem;
  }
}
.p_aboutFlowSuggestion_item {
  margin-bottom: 3.9rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion_item {
    width: 33.4rem;
    margin-bottom: 0;
  }
}
.p_aboutFlowSuggestion_item:first-of-type .p_aboutFlowSuggestion_image {
  width: 35rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion_item:first-of-type .p_aboutFlowSuggestion_image {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion_item:nth-of-type(odd) {
    width: 45.3rem;
    margin-left: auto;
    margin-right: 8.1rem;
  }
}
.p_aboutFlowSuggestion_image {
  width: 31rem;
  margin: 0 auto 0.2rem;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion_image {
    width: 33.4rem;
    margin: 0 auto 0.7rem;
  }
}
.p_aboutFlowSuggestion_detail {
  color: #707070;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.65em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutFlowSuggestion_detail {
    font-size: 2.1rem;
    line-height: 1.95em;
  }
}
.p_aboutCompany {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 29.4rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_aboutCompany {
    padding-top: 10rem;
    padding-bottom: 34.7rem;
    border-top-right-radius: 29.1rem;
    border-top-left-radius: 29.1rem;
  }
}
.p_aboutCompanyTop {
  width: 31rem;
  margin: 0 auto 2.9rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTop {
    width: 100%;
  }
}
.p_aboutCompanyTop_heading {
  margin-bottom: 1.7rem;
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.33em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTop_heading {
    margin-bottom: 4.2rem;
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTop_heading br {
    display: none;
  }
}
.p_aboutCompanyTopCan {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan {
    justify-content: center;
    margin-bottom: 5.4rem;
  }
}
.p_aboutCompanyTopCan_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 16rem;
  border: solid 0.15rem rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.52em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item {
    width: 18.3rem;
    height: 18.3rem;
    line-height: 1.9em;
  }
}
.p_aboutCompanyTopCan_item:nth-of-type(odd) {
  margin-right: -0.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(odd) {
    margin-right: 0;
  }
}
.p_aboutCompanyTopCan_item:nth-of-type(even) {
  margin-left: -0.6rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(even) {
    margin-left: 0;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(1) {
    margin-right: -1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(2) {
    margin-right: -0.5rem;
  }
}
.p_aboutCompanyTopCan_item:nth-of-type(3), .p_aboutCompanyTopCan_item:nth-of-type(4) {
  margin-top: -1.5rem;
  padding-top: 0.7rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(3), .p_aboutCompanyTopCan_item:nth-of-type(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(3) {
    margin-left: -0.5rem;
  }
}
.p_aboutCompanyTopCan_item:nth-of-type(4) {
  padding-left: 0.7rem;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTopCan_item:nth-of-type(4) {
    margin-left: -1.1rem;
    padding-left: 0;
  }
}
.p_aboutCompanyTop_message {
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.68em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTop_message {
    font-size: 3.1rem;
    line-height: 1;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyTop_message br {
    display: none;
  }
}
.p_aboutCompanyCeo {
  position: absolute;
  bottom: -7.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 33rem;
  margin: 0 auto;
  padding: 3.7rem 0 2rem 1.9rem;
  border: solid 0.3rem #45B7D2;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyCeo {
    bottom: -10.1rem;
    width: 82.2rem;
    padding: 9.5rem 0 10.1rem 8.2rem;
  }
}
.p_aboutCompanyCeoText {
  color: #43AECA;
  font-weight: 500;
}
.p_aboutCompanyCeoText_message {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1.94em;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyCeoText_message {
    margin-bottom: 2.3rem;
    font-size: 2.1rem;
    letter-spacing: 0.05em;
    line-height: 2.24em;
  }
}
.p_aboutCompanyCeoText_name {
  margin-left: 0.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyCeoText_name {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutCompanyCeo_illust {
    position: absolute;
    top: -3.1rem;
    right: -7rem;
    width: 45.1rem;
  }
}
.p_aboutMenu {
  position: relative;
  flex-direction: column;
  row-gap: 2rem;
  padding: 14.7rem 0 7.3rem;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu {
    display: grid;
    grid-template-columns: repeat(2, auto);
    -moz-column-gap: 3.4rem;
         column-gap: 3.4rem;
    row-gap: 1.9rem;
    padding: 21rem 0 11.9rem;
  }
}
.p_aboutMenu::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../image/corporate/sm_aboutMenu_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu::before {
    background-image: url(../image/corporate/xl_aboutMenu_bg.jpg);
  }
}
.p_aboutMenu_item {
  overflow: hidden;
  width: 33rem;
  height: 10.4rem;
  margin: 0 auto;
  border-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item {
    width: 39.4rem;
    height: 15.8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item:nth-of-type(odd) {
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item:nth-of-type(even) {
    margin: 0 auto 0 0;
  }
}
.p_aboutMenu_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 2.2rem;
  background-color: #F0FBFF;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item a {
    padding-top: 4.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item a:hover {
    opacity: 0.5;
  }
}
.p_aboutMenu_item a .en {
  margin-bottom: 1.2rem;
  color: #45B7D2;
  font-size: 3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item a .en {
    margin-bottom: 1.6rem;
    font-size: 3.5rem;
    letter-spacing: 0.08em;
  }
}
.p_aboutMenu_item a .jp {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_aboutMenu_item a .jp {
    font-size: 1.7rem;
  }
}

.p_strength .l_container {
  margin-top: 6.1rem;
}
@media screen and (min-width: 600px) {
  .p_strength .l_container {
    margin-top: 4.6rem;
  }
}
.p_strengthNav {
  width: 31rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_strengthNav {
    width: 100%;
  }
}
.p_strengthNav a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 1.8rem;
  border-radius: 1.5rem;
  background-color: #43AECA;
}
.p_strengthNav a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.8rem;
  height: 1.1rem;
  width: 1.8rem;
  height: 1.1rem;
  background-image: url(../image/corporate/strengthAnker_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_strengthNav a::before {
    bottom: 2.6rem;
    padding-top: 2.3rem;
  }
}
.p_strengthNavList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 600px) {
  .p_strengthNavList {
    display: flex;
    justify-content: center;
  }
}
.p_strengthNavList_item {
  display: flex;
  justify-content: center;
  width: 14.5rem;
  height: 14.5rem;
  margin-right: 2rem;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 600px) {
  .p_strengthNavList_item {
    width: 23rem;
    height: 18.2rem;
    margin-right: 2.6rem;
    margin-bottom: 0;
  }
}
.p_strengthNavList_item:last-of-type {
  margin-right: 0;
}
.p_strengthNavList_item:nth-of-type(2) {
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .p_strengthNavList_item:nth-of-type(2) {
    margin-right: 2.6rem;
  }
}
.p_strengthNavList_item:nth-of-type(3), .p_strengthNavList_item:nth-of-type(4) {
  margin-bottom: 0;
}
.p_strengthNavList_icon {
  width: 5.8rem;
  height: 5.8rem;
  margin: 0 auto 0.6rem;
}
@media screen and (min-width: 600px) {
  .p_strengthNavList_icon {
    width: 6.9rem;
    height: 6.9rem;
    margin: 0 auto 1.9rem;
  }
}
.p_strengthNavList_name {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_strengthNavList_name {
    font-size: 1.7rem;
  }
}
.p_strength_item {
  position: relative;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_strength_item {
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: transparent;
  }
}
.p_strength_item::before, .p_strength_item::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: -1;
  width: 37.5rem;
  height: 37.5rem;
  background-image: url(../image/corporate/sm_strength_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p_strength_item::after {
  transform: rotate(180deg);
}
@media screen and (min-width: 600px) {
  .p_strength_item::after {
    display: none;
  }
}
.p_strength_item:nth-of-type(1) {
  margin-top: 19.5rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(1) {
    margin-top: 25.6rem;
  }
}
.p_strength_item:nth-of-type(1)::before {
  top: -11.5rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(1)::before {
    top: -16.8rem;
  }
}
.p_strength_item:nth-of-type(1)::after {
  bottom: -9.4rem;
}
.p_strength_item:nth-of-type(1) .p_strength_heading::before {
  top: -9.6rem;
  right: 0;
  width: 21.4rem;
  height: 22.4rem;
  background-image: url(../image/corporate/sm_strengthFollow_icon.svg);
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(1) .p_strength_heading::before {
    top: -14.8rem;
    left: -13.9rem;
    width: 40.8rem;
    height: 42rem;
    background-image: url(../image/corporate/xl_strengthFollow_icon.svg);
  }
}
.p_strength_item:nth-of-type(1) .p_strength_image {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(1) .p_strength_image {
    width: 69rem;
    margin-top: -3.6rem;
    margin-bottom: 0;
    margin-left: -2.7rem;
  }
}
.p_strength_item:nth-of-type(2) {
  margin-top: 24.9rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) {
    margin-top: 40.8rem;
  }
}
.p_strength_item:nth-of-type(2)::before {
  top: -8.8rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2)::before {
    top: -13.5rem;
  }
}
.p_strength_item:nth-of-type(2)::after {
  bottom: -8.5rem;
}
.p_strength_item:nth-of-type(2) .p_strength_heading {
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) .p_strength_heading {
    margin-bottom: 0;
    margin-left: 5.6rem;
  }
}
.p_strength_item:nth-of-type(2) .p_strength_heading::before {
  top: -6.4rem;
  right: 0;
  width: 19.9rem;
  height: 22.1rem;
  background-image: url(../image/corporate/sm_strengthWorking_icon.svg);
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) .p_strength_heading::before {
    top: -14.2rem;
    right: -13.5rem;
    width: 35.6rem;
    height: 41.9rem;
    background-image: url(../image/corporate/xl_strengthWorking_icon.svg);
  }
}
.p_strength_item:nth-of-type(2) .p_strength_image {
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) .p_strength_image {
    width: 61.1rem;
    margin-top: -5.9rem;
    margin-bottom: 0;
    margin-left: 0rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) .p_strengthText {
    margin-left: 5.6rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(2) .p_strengthText_item {
    margin-bottom: 4.3rem;
  }
}
.p_strength_item:nth-of-type(3) {
  margin-top: 26.8rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3) {
    margin-top: 35.8rem;
  }
}
.p_strength_item:nth-of-type(3)::before {
  top: -10rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3)::before {
    top: -16.2rem;
  }
}
.p_strength_item:nth-of-type(3)::after {
  bottom: -11rem;
}
.p_strength_item:nth-of-type(3) .p_strength_heading {
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3) .p_strength_heading {
    margin-bottom: 9.5rem;
  }
}
.p_strength_item:nth-of-type(3) .p_strength_heading::before {
  top: -5.6rem;
  right: 0;
  width: 22.1rem;
  height: 17.6rem;
  background-image: url(../image/corporate/sm_strengthWelfare_icon.svg);
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3) .p_strength_heading::before {
    top: -15rem;
    right: auto;
    left: -13.9rem;
    width: 44.2rem;
    height: 37.1rem;
    background-image: url(../image/corporate/xl_strengthWelfare_icon.svg);
  }
}
.p_strength_item:nth-of-type(3) .p_strength_image {
  margin-bottom: 5.1rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3) .p_strength_image {
    width: 76.2rem;
    margin-top: -4.6rem;
    margin-bottom: 0;
    margin-left: -9.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(3) .p_strengthText_item {
    margin-bottom: 7.8rem;
  }
}
.p_strength_item:nth-of-type(4) {
  margin-top: 28.3rem;
  margin-bottom: 21.4rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) {
    margin-top: 41.2rem;
    margin-bottom: 9rem;
  }
}
.p_strength_item:nth-of-type(4)::before {
  top: -8.8rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4)::before {
    top: -13.5rem;
  }
}
.p_strength_item:nth-of-type(4)::after {
  bottom: -12.4rem;
}
.p_strength_item:nth-of-type(4) .p_strength_heading {
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) .p_strength_heading {
    margin-bottom: 0;
    margin-left: 5rem;
  }
}
.p_strength_item:nth-of-type(4) .p_strength_heading::before {
  top: -8.5rem;
  right: 0.4rem;
  width: 20rem;
  height: 20rem;
  background-image: url(../image/corporate/sm_strengthCareer_icon.svg);
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) .p_strength_heading::before {
    top: -15.9rem;
    right: -12rem;
    width: 41.3rem;
    height: 40.1rem;
    background-image: url(../image/corporate/xl_strengthCareer_icon.svg);
  }
}
.p_strength_item:nth-of-type(4) .p_strength_image {
  margin-bottom: 3.8rem;
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) .p_strength_image {
    width: 60.4rem;
    margin-top: -5.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) .p_strengthText {
    margin-left: 6.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(4) .p_strengthText_item {
    margin-bottom: 4.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(odd) {
    padding-left: 13.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(odd)::before {
    width: 136.6rem;
    height: 109.8rem;
    background-image: url(../image/corporate/xl_strength_bg_01.svg);
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(odd) .p_strength_heading {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(odd) .p_strength_image {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(odd) .p_strengthText {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(even)::before {
    width: 136.6rem;
    height: 100.2rem;
    background-image: url(../image/corporate/xl_strength_bg_02.svg);
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(even) {
    padding-right: 13.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(even) .p_strength_heading {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-bottom: 10.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(even) .p_strength_image {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_item:nth-of-type(even) .p_strengthText {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.p_strength_heading {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6rem;
  margin-left: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_strength_heading {
    margin-bottom: 10.5rem;
    margin-left: 0;
  }
}
.p_strength_heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 600px) {
  .p_strength_heading::before {
    opacity: 0.5;
  }
}
@media screen and (min-width: 600px) {
  .p_strength_heading br {
    display: none;
  }
}
.p_strength_heading .en {
  color: #45B7D2;
  font-size: 3.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.14em;
}
@media screen and (min-width: 600px) {
  .p_strength_heading .en {
    font-size: 5.5rem;
    letter-spacing: 0.08em;
  }
}
.p_strength_heading .jp {
  display: inline-block;
  margin-top: 0.7rem;
  color: #45B7D2;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_strength_heading .jp {
    margin-top: 1.5rem;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
  }
}
.p_strength_image {
  position: relative;
  z-index: 1;
}
.p_strengthText {
  width: 31rem;
  margin: 0 auto;
  counter-reset: number 0;
}
@media screen and (min-width: 600px) {
  .p_strengthText {
    position: relative;
    width: 60rem;
  }
}
.p_strengthText_item {
  margin-bottom: 4.7rem;
}
@media screen and (min-width: 600px) {
  .p_strengthText_item {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 4.8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strengthText_item:nth-of-type(1)::before {
    padding-right: 1.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strengthText_item:nth-of-type(2)::before {
    padding-right: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_strengthText_item:nth-of-type(3)::before {
    padding-right: 1.4rem;
  }
}
.p_strengthText_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_strengthText_item::before {
    content: counter(number, decimal-leading-zero) " ";
    counter-increment: number 1;
    grid-column: 1/2;
    grid-row: 1/3;
    margin-right: 2.4rem;
    border-right: solid 0.1rem #43AECA;
    color: #45B7D2;
    font-size: 3.5rem;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
  }
}
.p_strengthText_heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
  color: #45B7D2;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.47em;
}
@media screen and (min-width: 600px) {
  .p_strengthText_heading {
    display: block;
    grid-column: 2/3;
    grid-row: 1/2;
    margin-bottom: 1rem;
    font-size: 2.1rem;
  }
}
.p_strengthText_heading::before {
  content: counter(number, decimal-leading-zero) " ";
  counter-increment: number 1;
  margin-bottom: 2.8rem;
  font-size: 3.5rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.35em;
}
@media screen and (min-width: 600px) {
  .p_strengthText_heading::before {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .p_strengthText_heading br {
    display: none;
  }
}
.p_strengthText_detail {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_strengthText_detail {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-bottom: 0.5rem;
    color: #707070;
    line-height: 1.79em;
  }
}

.p_company .l_container {
  margin-top: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_company .l_container {
    margin-top: 6.7rem;
  }
}
.p_companyNav {
  margin-bottom: 5.7rem;
}
@media screen and (min-width: 600px) {
  .p_companyNav {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  .p_companyNavList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p_companyNavList_item {
  border-bottom: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_companyNavList_item {
    border-bottom: none;
    border-right: solid 0.1rem #DEDEDE;
  }
}
.p_companyNavList_item:first-of-type {
  border-top: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_companyNavList_item:first-of-type {
    border-top: none;
    border-left: solid 0.1rem #DEDEDE;
  }
}
.p_companyNavList_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 4rem;
  color: #707070;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyNavList_item a {
    flex-direction: column;
    justify-content: center;
    height: 5.5rem;
    padding: 0;
    font-size: 1.8rem;
  }
}
.p_companyNavList_item a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.9rem;
  background-image: url(../image/corporate/sm_faq_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_companyNavList_item a::after {
    margin-top: 1.6rem;
    background-image: url(../image/corporate/xl_faq_arrow.svg);
  }
}
.p_companyMessage {
  overflow: hidden;
  position: relative;
  margin-top: 8.9rem;
  padding-top: 9.6rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessage {
    padding-bottom: 24.4rem;
  }
}
.p_companyMessage::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  width: 82.6rem;
  height: 86.7rem;
  border-radius: 50%;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_companyMessage::before {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage {
    margin-top: 0;
    padding-top: 8rem;
  }
}
.p_companyMessage .e_heading-s._sm_hide {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_companyMessage .e_heading-s._sm_hide {
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage .e_heading-s._lg_hide {
    display: none;
  }
}
.p_companyMessageTop {
  position: relative;
  margin-top: 2.6rem;
  margin-bottom: 5.9rem;
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTop {
    position: relative;
    margin-top: 0;
    margin-bottom: 16.8rem;
    padding-top: 9.7rem;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .p_companyMessageTop::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 109.9rem;
    background-image: url(../image/corporate/xl_companyMessageTop_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.p_companyMessageTop::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  width: 82.6rem;
  height: 86.7rem;
  border-radius: 50%;
  /*background-color: #F0FBFF;*/
}
@media screen and (min-width: 600px) {
  .p_companyMessageTop_inner {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
.p_companyMessageTop_image {
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTop_image {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 46.5rem;
    margin-bottom: 0;
    margin-right: 9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopProfile {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-left: 7.3rem;
    padding-top: 8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopProfile .e_heading-s {
    margin-bottom: 4.3rem;
  }
  .p_companyMessageTopProfile .e_heading-s .jp {
    margin-top: 2.1rem;
    font-weight: 400;
  }
}
.p_companyMessageTopProfile_company {
  color: #45B7D2;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopProfile_company {
    margin-bottom: 0.9rem;
  }
}
.p_companyMessageTopProfile_name {
  margin-bottom: 2.8rem;
  color: #45B7D2;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.p_companyMessageTopProfile_name .large {
  margin-left: 1.3rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopProfile_name .large {
    font-size: 3.5rem;
    margin-left: 0;
  }
}
.p_companyMessageTopProfile_name .romaji {
  margin-left: 0.5rem;
  color: #9B9B9B;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopProfile_name .romaji {
    margin-left: 1rem;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopText {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 9.5rem;
  }
}
.p_companyMessageTopText_heading {
  margin-bottom: 1.2rem;
  color: #45B7D2;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.57em;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopText_heading {
    margin-bottom: 2.4rem;
    font-size: 2.5rem;
    line-height: 1.8em;
    letter-spacing: 0.12em;
    text-align: center;
  }
}
.p_companyMessageTopText_detail {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.29em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageTopText_detail {
    text-align: center;
    line-height: 2.14em;
  }
}
.p_companyMessage_item {
  position: relative;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item {
    width: 77.3rem;
    margin-left: 23rem;
  }
}
.p_companyMessage_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item .l_inner {
    width: auto;
    margin: 0;
  }
}
.p_companyMessage_item:nth-of-type(3) {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(3) {
    margin-bottom: 0;
    padding-bottom: 9.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(3) .img_illust_pc01 {
    width: 44.4rem;
    position: absolute;
    right: -40rem;
    bottom: 6.5rem;
    z-index: -1;
  }
}
.p_companyMessage_item:nth-of-type(3) .img_illust_sp01 {
  width: 32.8rem;
  margin: 4.4rem auto 6.4rem;
}
.p_companyMessage_item:nth-of-type(5) {
  margin-bottom: 5.1rem;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(5) {
    margin-bottom: 0;
    padding-bottom: 11rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(5) .img_illust_pc02 {
    width: 26.8rem;
    position: absolute;
    bottom: 35rem;
    right: -37rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(5) .img_illust_pc03 {
    width: 25.7rem;
    position: absolute;
    right: -23.6rem;
    bottom: 3.5rem;
    z-index: -1;
  }
}
.p_companyMessage_item:nth-of-type(5) .img_illust_sp02 {
  margin: 2.7rem auto 6.8rem;
}
.p_companyMessage_item:nth-of-type(6) {
  margin-bottom: 6.8rem;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(6) {
    margin-bottom: 0;
    padding-bottom: 10.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(6) .img_illust_pc04 {
    width: 44.2rem;
    position: absolute;
    top: 12rem;
    right: -38.8rem;
    z-index: -1;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(6) .img_illust_pc05 {
    width: 26.8rem;
    position: absolute;
    right: -8.6rem;
    bottom: 7rem;
    z-index: -1;
  }
}
.p_companyMessage_item:nth-of-type(6) .img_illust_sp03 {
  margin: 3.76rem auto 7.77rem;
}
.p_companyMessage_item:nth-of-type(7) {
  margin-bottom: 6.9rem;
  padding-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(7) {
    margin-bottom: 0;
    padding-bottom: 11.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessage_item:nth-of-type(7) .img_illust_pc06 {
    width: 25.8rem;
    position: absolute;
    right: -20.8rem;
    top: 10.7rem;
    z-index: -1;
  }
}
.p_companyMessage_item:nth-of-type(7) .img_illust_sp04 {
  width: 32.8rem;
  margin: 3.9rem auto 8.47rem;
}
.p_companyMessage_heading {
  margin-bottom: 1.7rem;
  padding-bottom: 1.8rem;
  border-bottom: solid 0.1rem #DEDEDE;
  color: #45B7D2;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.49em;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_heading {
    margin-bottom: 2.3rem;
    padding-bottom: 3rem;
    font-size: 2.5rem;
    line-height: 1;
    white-space: nowrap;
  }
}
.p_companyMessage_detail {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.29em;
}
@media screen and (min-width: 600px) {
  .p_companyMessage_detail {
    line-height: 2.14em;
    white-space: nowrap;
  }
}
.p_companyMessageBg {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 37.1rem;
  margin-bottom: 7rem;
  padding-top: 7.2rem;
  background-image: url(../image/corporate/sm_companyMessageBg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 600px) {
  .p_companyMessageBg {
    height: 29.5rem;
    margin-bottom: 12.1rem;
    padding-top: 8rem;
    background-image: url(../image/corporate/xl_companyMessageBg.jpg);
  }
}
.p_companyMessageBg_heading {
  position: relative;
  margin-bottom: 2.3rem;
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.67em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyMessageBg_heading {
    margin-bottom: 3.8rem;
    font-size: 2.5rem;
    line-height: 1;
  }
}
.p_companyMessageBg_heading::before, .p_companyMessageBg_heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.7rem;
  height: 1.6rem;
}
.p_companyMessageBg_heading::before {
  top: -0.8rem;
  left: -2.4rem;
  border-top: solid 0.2rem #FFFFFF;
  border-left: solid 0.2rem #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_companyMessageBg_heading::before {
    top: -1.2rem;
    left: -1.8rem;
  }
}
.p_companyMessageBg_heading::after {
  right: -1rem;
  bottom: -0.5rem;
  border-right: solid 0.2rem #FFFFFF;
  border-bottom: solid 0.2rem #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_companyMessageBg_heading::after {
    right: -1.5rem;
    bottom: -1.2rem;
  }
}
.p_companyMessageBg_detail {
  width: 31rem;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageBg_detail {
    width: auto;
    text-align: center;
    line-height: 2.26em;
  }
}
.p_companyMessageSlider {
  margin-bottom: 5em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageSlider {
    margin-bottom: 13.6em;
  }
}
.p_companyMessageSlider .swiper-wrapper {
  transition-timing-function: linear;
}
.p_companyMessageSlider .swiper-slide {
  overflow: hidden;
  height: 25rem;
  border-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageSlider .swiper-slide {
    height: 33.3rem;
  }
}
.p_companyMessageSlider .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p_companyMessageLast {
  margin-bottom: 11.8rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLast {
    position: relative;
  }
}
.p_companyMessageLast_heading {
  margin-bottom: 1rem;
  color: #45B7D2;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.37em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLast_heading {
    margin-bottom: 6.8rem;
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
  }
}
.p_companyMessageLast_detail {
  margin-bottom: 3.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.29em;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLast_detail {
    margin-bottom: 0;
    line-height: 2.14em;
  }
}
@media screen and (min-width: 600px) {
  .p_companyMessageLast_detail span {
    display: inline-block;
    margin-top: 8.9rem;
  }
}
.p_companyMessageLastSlider {
  position: relative;
  padding-bottom: 4.6rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLastSlider {
    display: none;
  }
}
.p_companyMessageLastSlider .swiper .swiper-slide {
  height: 36.7rem;
}
.p_companyMessageLastSlider .swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p_companyMessageLastSlider .progress {
  overflow: hidden;
  position: absolute;
  top: 37.7rem;
  right: 0;
  z-index: 99;
  width: 8.8rem;
  height: 1.3rem;
  border: solid 0.1rem #45B7D2;
  border-radius: 100vh;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLastSlider .progress {
    display: none;
  }
}
.p_companyMessageLastSlider .progress span {
  --progress: 0;
  position: absolute;
  top: 0;
  left: calc(100% * var(--progress));
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLastSlider .progress span {
    display: none;
  }
}
.p_companyMessageLastSlider_illust {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 13.2rem;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLastSlider_illust {
    width: 21.7rem;
  }
}
.p_companyMessageLast_image {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_companyMessageLast_image {
    display: block;
    position: absolute;
    top: 11.8rem;
    right: 0;
    width: 84.4rem;
  }
}
.p_companyPhilosophy {
  padding: 7.6rem 0 9.9rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophy {
    padding: 11.5rem 0 14.2rem;
  }
}
.p_companyPhilosophy .e_heading-s {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophy .e_heading-s {
    margin-bottom: 5.9rem;
  }
}
.p_companyPhilosophy .e_heading-s .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1280px) {
  .p_companyPhilosophy .e_heading-s .en {
    letter-spacing: 0.12em;
  }
}
.p_companyPhilosophy .e_heading-s .jp {
  margin-top: 1.3rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophy .e_heading-s .jp {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .p_companyPhilosophy .l_inner {
    width: 100.7rem;
  }
}
.p_companyPhilosophy_description {
  margin-bottom: 5.5rem;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2.06em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophy_description {
    margin-bottom: 10rem;
    font-size: 3.1rem;
    line-height: 1.77em;
  }
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
  }
}
.p_companyPhilosophyList_item:nth-of-type(1) {
  margin-bottom: 8.5rem;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item:nth-of-type(1) {
    margin-bottom: 14.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item:nth-of-type(2) {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item:nth-of-type(2) .p_companyPhilosophyList_heading {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-left: 10.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item:nth-of-type(2) .p_companyPhilosophyList_detail {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: -1rem;
    margin-left: 10.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_item:nth-of-type(2) .p_companyPhilosophyList_point {
    grid-column: 1/2;
    grid-row: 1/3;
    margin-top: 1.5rem;
  }
}
.p_companyPhilosophyList_heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_heading {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 0.4rem;
  }
}
.p_companyPhilosophyList_heading .en {
  color: #FFFFFF;
  font-size: 3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_heading .en {
    font-size: 4.5rem;
    letter-spacing: 0.08em;
  }
}
.p_companyPhilosophyList_heading .jp {
  display: inline-block;
  margin-top: 0.5rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_heading .jp {
    font-size: 1.7rem;
    margin-top: 1.3rem;
  }
}
.p_companyPhilosophyList_detail {
  color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_detail {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p_companyPhilosophyList_detail h4 {
  margin-bottom: 0.4rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_detail h4 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
  }
}
.p_companyPhilosophyList_detail p {
  margin-bottom: 4.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.79em;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_detail p {
    margin-bottom: 0;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
  }
}
.p_companyPhilosophyList_point {
  color: #FFFFFF;
  counter-reset: number 0;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_point {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 47.4rem;
    margin-top: 0.3rem;
  }
}
.p_companyPhilosophyList_point li {
  display: flex;
  align-items: center;
  padding-top: 1.8rem;
  padding-bottom: 1.9rem;
  border-bottom: solid 0.1rem #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.65em;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyList_point li {
    padding-top: 4.1rem;
    padding-bottom: 3.7rem;
  }
}
.p_companyPhilosophyList_point li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  margin-right: 1.9rem;
  font-size: 3rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.p_companyPhilosophyList_point li:nth-of-type(1) {
  padding-top: 0;
}
.p_companyPhilosophyList_point li:nth-of-type(1)::before {
  padding-top: 0;
  margin-right: 2.5rem;
}
.p_companyPhilosophyMisshion_heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.1rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshion_heading {
    margin-bottom: 2.6rem;
  }
}
.p_companyPhilosophyMisshion_heading .en {
  color: #FFFFFF;
  font-size: 3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshion_heading .en {
    font-size: 4.5rem;
    letter-spacing: 0.08em;
  }
}
.p_companyPhilosophyMisshion_heading .jp {
  display: inline-block;
  margin-top: 0.5rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshion_heading .jp {
    font-size: 1.7rem;
    margin-top: 1.3rem;
  }
}
.p_companyPhilosophyMisshionSlider_item {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 31rem;
  margin: 0 0.7rem;
  padding: 2.6rem 2.3rem;
  border: solid 0.2rem #FFFFFF;
  border-radius: 1.5rem;
  color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshionSlider_item {
    width: 50.8rem;
    margin: 0 2.5rem;
    padding: 4.6rem 4.3rem;
  }
}
.p_companyPhilosophyMisshionSlider_heading {
  margin-bottom: 0.8rem;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshionSlider_heading {
    margin-bottom: 1.8rem;
    font-size: 2.1rem;
  }
}
.p_companyPhilosophyMisshionSlider_detaile {
  min-width: 24.6rem;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.92em;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_companyPhilosophyMisshionSlider_detaile {
    min-width: 43rem;
    font-size: 1.7rem;
    line-height: 1.76em;
  }
}
.p_companyPhilosophyMisshionSlider_detaile._nowrap {
  white-space: nowrap;
}
.p_companyBusiness {
  padding-top: 8.8rem;
  padding-bottom: 11.7rem;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness {
    margin-bottom: 15.9rem;
    padding-top: 18.2rem;
  }
}
.p_companyBusiness .e_heading-s {
  margin-bottom: 2.1rem;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness .e_heading-s {
    margin-bottom: 5.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyBusiness .e_heading-s .jp {
    font-size: 1.7rem;
    font-weight: 400;
  }
}
.p_companyBusiness_item {
  position: relative;
}
.p_companyBusiness_item::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 45.9rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item::before {
    width: 82rem;
    height: 83.2rem;
  }
}
.p_companyBusiness_item:nth-of-type(1) {
  margin-bottom: 6.5rem;
  padding-top: 32.9rem;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(1) {
    padding-top: 0;
    margin-bottom: 5.3rem;
  }
}
.p_companyBusiness_item:nth-of-type(1)::before {
  background-image: url(../image/corporate/sm_companyBusiness_01.png);
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(1)::before {
    top: -8.1rem;
    left: auto;
    right: 0;
    background-image: url(../image/corporate/xl_companyBusiness_01.png);
  }
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(1) .p_companyBusiness_text {
    margin: 0 auto 0 0;
    padding: 7.6rem 8.7rem 7.5rem 13.9rem;
    border-left: none;
    border-radius: 0;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}
.p_companyBusiness_item:nth-of-type(2) {
  padding-top: 33.6rem;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2) {
    padding-top: 0;
  }
}
.p_companyBusiness_item:nth-of-type(2)::before {
  background-image: url(../image/corporate/sm_companyBusiness_02.png);
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2)::before {
    top: 9.8rem;
    background-image: url(../image/corporate/xl_companyBusiness_02.png);
  }
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_text {
    margin: 0 0 0 auto;
    padding: 8.1rem 8.7rem 8.2rem 7.8rem;
    border-right: none;
    border-radius: 0;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_description {
    margin-bottom: 1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_heading {
    margin-bottom: 4.6rem;
  }
}
.p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_detail {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_detail {
    margin-bottom: 6.9rem;
  }
}
.p_companyBusiness_item:nth-of-type(2) .p_companyBusiness_detail:last-of-type {
  margin-bottom: 0;
}
.p_companyBusiness_text {
  width: 31rem;
  margin: 0 auto;
  border: solid 0.2rem #45B7D2;
  padding: 3.2rem 2.7rem 4.5rem;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_text {
    width: 73rem;
  }
}
.p_companyBusiness_text a {
  display: block;
  margin-top: 2.4rem;
  padding-bottom: 0.7rem;
  border-bottom: solid 0.1rem #43AECA;
  color: #9B9B9B;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.43em;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_text a {
    display: inline-block;
    position: relative;
    margin-top: 3.4rem;
    padding-bottom: 0.5rem;
    letter-spacing: 0.12em;
  }
}
.p_companyBusiness_text a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1.7rem;
  margin-bottom: -0.3rem;
  background-image: url(../image/common/link_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_text a::after {
    position: absolute;
    right: -2.1rem;
    top: 0.9rem;
    width: 1.1rem;
    height: 1.1rem;
  }
}
.p_companyBusiness_heading {
  margin-bottom: 1.9rem;
  color: #45B7D2;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.43em;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_heading {
    margin-bottom: 4.4rem;
    font-size: 2.8rem;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
.p_companyBusiness_description {
  margin-bottom: 0.7rem;
  color: #45B7D2;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.43em;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_description {
    margin-bottom: 0.5rem;
    font-size: 2.1rem;
    letter-spacing: 0.12em;
    line-height: 1.67em;
  }
}
.p_companyBusiness_detail {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_companyBusiness_detail {
    color: #707070;
    line-height: 2.29em;
  }
}
.p_companyOutline {
  padding-top: 5.8rem;
  padding-bottom: 6.3rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_companyOutline {
    padding-top: 11.4rem;
    padding-bottom: 12.6rem;
  }
}
.p_companyOutline .e_heading-s {
  margin-bottom: 3.6rem;
}
.p_companyOutline .e_heading-s .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_companyOutline .e_heading-s .en {
    letter-spacing: 0.08em;
  }
}
.p_companyOutline .e_heading-s .jp {
  margin-top: 0.6rem;
  margin-left: 0.2rem;
}
@media screen and (min-width: 600px) {
  .p_companyOutline .e_heading-s .jp {
    margin-top: 1.1rem;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }
}
@media screen and (min-width: 600px) {
  .p_companyOutline_inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 600px) {
  .p_companyOutlineList {
    margin-top: 1.5rem;
  }
}
.p_companyOutlineList_item {
  padding: 1.5rem 0 1.8rem;
  border-bottom: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_companyOutlineList_item {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 78.1rem;
    padding: 2.4rem 5.1rem 2.1rem 4.2rem;
  }
}
.p_companyOutlineList_item:first-of-type {
  border-top: solid 0.1rem #DEDEDE;
}
.p_companyOutlineList_title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.p_companyOutlineList_data {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1.64em;
}
@media screen and (min-width: 600px) {
  .p_companyOutlineList_data {
    width: 53.7rem;
    white-space: nowrap;
  }
}

.p_faq {
  padding-top: 10.4rem;
}
@media screen and (min-width: 600px) {
  .p_faq {
    padding-top: 16.8rem;
  }
}
.p_faq .c_subpageHeader .e_heading-l {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_faq .c_subpageHeader .e_heading-l {
    position: static;
    margin-top: 1.3rem;
  }
}
.p_faq .l_container {
  margin-top: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_faq .l_container {
    margin-top: 11rem;
  }
}
@media screen and (min-width: 600px) {
  .p_faq .l_inner {
    width: 99rem;
  }
}
.p_faqNav {
  margin-bottom: 5.7rem;
}
@media screen and (min-width: 600px) {
  .p_faqNav {
    margin-bottom: 10.1rem;
  }
}
@media screen and (min-width: 600px) {
  .p_faqNavList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p_faqNavList_item {
  border-bottom: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_faqNavList_item {
    border-bottom: none;
    border-right: solid 0.1rem #DEDEDE;
  }
}
.p_faqNavList_item:first-of-type {
  border-top: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_faqNavList_item:first-of-type {
    border-top: none;
    border-left: solid 0.1rem #DEDEDE;
  }
}
.p_faqNavList_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 4rem;
  color: #707070;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_faqNavList_item a {
    flex-direction: column;
    justify-content: center;
    height: 5.5rem;
    padding: 0;
    font-size: 1.8rem;
  }
}
.p_faqNavList_item a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.9rem;
  background-image: url(../image/corporate/sm_faq_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_faqNavList_item a::after {
    margin-top: 1.6rem;
    background-image: url(../image/corporate/xl_faq_arrow.svg);
  }
}
.p_faqList {
  margin-bottom: 8.4rem;
}
.p_faqList_item {
  padding: 2.3rem 0;
  border-top: solid 0.1rem #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_faqList_item {
    padding: 2.7rem 0;
  }
}
.p_faqList_heading {
  margin-bottom: 2.7rem;
  color: #45B7D2;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_faqList_heading {
    margin-bottom: 3rem;
    color: #32C2D7;
  }
}
.p_faqList_question {
  display: flex;
  position: relative;
  padding-right: calc(100% - 27.1rem);
  color: #3C3C3C;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.79em;
}
@media screen and (min-width: 600px) {
  .p_faqList_question {
    padding-right: calc(100% - 88.4rem);
  }
}
.p_faqList_question::before, .p_faqList_question::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.7rem;
  height: 0.25rem;
  border-radius: 2.5rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_faqList_question::before, .p_faqList_question::after {
    width: 2.1rem;
    right: 2rem;
  }
}
.p_faqList_question::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.p_faqList_question._close::after {
  transform: rotate(0);
}
.p_faqList_question span {
  margin-top: 0.3rem;
  margin-right: 1.6rem;
  color: #45B7D2;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  .p_faqList_question span {
    margin-top: -0.2rem;
    margin-right: 2rem;
  }
}
.p_faqList_answer {
  width: 23.7rem;
  margin-top: 2rem;
  margin-left: 3.6rem;
  color: #292929;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2.07em;
}
@media screen and (min-width: 600px) {
  .p_faqList_answer {
    width: 85.4rem;
    margin-top: 2.6rem;
    padding: 4.3rem 4.7rem 4.8rem 8.6rem;
    border-radius: 1.5rem;
    background-color: #F0FBFF;
    letter-spacing: 0.08em;
    line-height: 2.14em;
  }
}

.p_law {
  padding-top: 10.4rem;
}
@media screen and (min-width: 600px) {
  .p_law {
    padding-top: 16.8rem;
  }
}
.p_law .c_subpageHeader .e_heading-l {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_law .c_subpageHeader .e_heading-l {
    position: static;
    margin-top: -2.1rem;
  }
}
.p_law .l_container {
  margin-top: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_law .l_container {
    margin-top: 11rem;
    margin-bottom: 3.6rem;
  }
}
.p_law .l_inner {
  width: 33.5rem;
}
@media screen and (min-width: 600px) {
  .p_law .l_inner {
    width: 92.8em;
  }
}
@media screen and (min-width: 600px) {
  .p_law .l_inner .large {
    width: 108.7rem;
  }
}
.p_law_content p {
  margin-bottom: 2.1em;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.93em;
}
@media screen and (min-width: 600px) {
  .p_law_content p {
    letter-spacing: 0.08em;
    line-height: 2.14em;
  }
}
.p_law_content p a._bold {
  font-weight: 700;
}
.p_law_content p a._blue {
  color: #45B7D2;
}
.p_law_content dl dt {
  padding-bottom: 0.3rem;
  border-bottom: solid 0.1rem #DEDEDE;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.p_law_content dl dd {
  margin-top: 0.7rem;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.93em;
}
@media screen and (min-width: 600px) {
  .p_law_content dl dd {
    margin-bottom: 7rem;
  }
}

.p_sitemap {
  padding-top: 10.4rem;
}
@media screen and (min-width: 600px) {
  .p_sitemap {
    padding-top: 16.8rem;
  }
}
.p_sitemap .c_subpageHeader .e_heading-l {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_sitemap .c_subpageHeader .e_heading-l {
    position: static;
    margin-top: 1.3rem;
  }
}
.p_sitemap .l_container {
  margin-top: 5.9rem;
  margin-bottom: 3.9rem;
}
@media screen and (min-width: 600px) {
  .p_sitemap .l_container {
    margin-top: 7rem;
    margin-bottom: 6.9rem;
  }
}
.p_sitemap_inner {
  border-left: solid 0.2rem #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_sitemap_inner {
    display: flex;
    justify-content: center;
    -moz-column-gap: 12.5rem;
         column-gap: 12.5rem;
    border-left: none;
  }
}
.p_sitemapList {
  display: flex;
  flex-direction: column;
  padding-left: 3.3rem;
}
@media screen and (min-width: 600px) {
  .p_sitemapList {
    border-left: solid 0.2rem #45B7D2;
  }
}
.p_sitemapList:last-of-type .p_sitemapList_item:last-child {
  margin-bottom: 0;
}
.p_sitemapList_item {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 600px) {
  .p_sitemapList_item {
    margin-bottom: 3.8rem;
  }
  .p_sitemapList_item:last-child {
    margin-bottom: 0;
  }
}
.p_sitemapList_item a {
  color: #3E3E3E;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 3.1rem;
}
@media screen and (min-width: 600px) {
  .p_sitemapList_item a {
    line-height: 2.7rem;
  }
}
.p_sitemapList_min {
  margin-top: 1.3rem;
}
.p_sitemapList_min li {
  margin-bottom: 1.3rem;
}
.p_sitemapList_min li a {
  color: #707070;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p_sitemapList_min li:last-of-type {
  margin-bottom: 0;
}

.p_userGuide {
  padding-top: 10.4rem;
}
@media screen and (min-width: 600px) {
  .p_userGuide {
    padding-top: 16.8rem;
  }
}
.p_userGuide .c_subpageHeader .e_heading-l {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_userGuide .c_subpageHeader .e_heading-l {
    position: static;
    margin-top: -1.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_userGuide .c_subpageHeader .e_heading-l .jp {
    margin-top: 2.4rem;
  }
}
.p_userGuide .l_container {
  margin-top: 6.6rem;
  margin-bottom: 8.3rem;
}
@media screen and (min-width: 600px) {
  .p_userGuide .l_container {
    margin-top: 11.3rem;
    margin-bottom: 0.6rem;
  }
}
.p_userGuide .l_inner {
  width: 33.5rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}
@media screen and (min-width: 600px) {
  .p_userGuide .l_inner {
    /* width: 92.8rem; */
  }
}
.p_userGuideNav {
  /* width: 24.8rem; */
  width: 100%;
  margin: 0 auto 7.3rem;
  margin: 0 auto 30px;
}
@media screen and (min-width: 600px) {
  .p_userGuideNav {
    width: 100%;
    margin: 0 auto 11.5rem;
    margin: 0 auto 60px
  }
}
.p_userGuideNavList {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p_userGuideNavList {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5.3rem;
    margin-bottom: 30px;
  }
}
.p_userGuideNavList:last-of-type {
  margin-bottom: 0;
}
.p_userGuideNavList:last-of-type .p_userGuideNavList_item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_userGuideNavList:last-of-type .p_userGuideNavList_item:last-child {
    margin-bottom: auto;
  }
}
.p_userGuideNavList_item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0.6rem;
  border-bottom: solid 0.1rem #FDD700;
}
@media screen and (min-width: 600px) {
  .p_userGuideNavList_item {
    margin-bottom: 0;
    padding-bottom: 0.4rem;
  }
}
.p_userGuideNavList_item::before {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0.4rem 0 0.4rem;
  border-color: #FDD700 transparent transparent transparent;
}
.p_userGuideNavList_item a {
  display: inline-block;
  width: 100%;
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  font-size: 18px;

}
@media screen and (max-width: 1000px) {
  .p_userGuideNavList_item a {
    font-size: 15px;
  }
}
@media screen and (min-width:768px) {
  .p_userGuideNavList_item a {
    font-size: 13px;
  }
}
.p_userGuide_item {
  /* margin-bottom: 3.1rem;
  padding-bottom: 2rem; */
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .p_userGuide_item {
    /* margin-bottom: 3.8rem;
    padding-bottom: 4rem; */
    margin-bottom: 60px;
  }
}
.p_userGuide_item:last-child {
  margin-bottom: 0;
}
.p_userGuide_title {
  /* margin-bottom: 10px;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0; */
  border-bottom: 2px solid #000;
  display: block;
  margin-bottom: 15px;
  padding: 8px 0px 8px 16px;
  background: url(./images/ico_circle_yellow.svg) left center no-repeat;
  background-size:8px auto ;
  font-size: 13px;
  line-height: 1.84em;
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .p_userGuide_title {
    /* margin-bottom: 20px;
    font-size: 16px; */
    margin-bottom: 20px;
    padding: 10px 0px 10px 20px;
    background: url(./images/ico_circle_yellow.svg) left center no-repeat;
    background-size:10px auto ;
    font-size: 16px;
    line-height: 1.875em;
  }
}
.p_userGuide_detail {
  font-size: 13px;
  line-height: 1.84em;
}
@media screen and (min-width: 600px) {
  .p_userGuide_detail {
    font-size: 16px;
    line-height: 1.875em;
  }
}

.p_form {
  padding-top: 10.4rem;
  padding-top: 0;
}
@media screen and (min-width: 600px) {
  .p_form {
    padding-top: 16.8rem;
    padding-top: 0;
  }
}
.p_form .c_subpageHeader .e_heading-l {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_form .c_subpageHeader .e_heading-l {
    position: static;
    margin-top: 1.3rem;
  }
}
.p_form .l_container {
  margin-top: 4.2rem;
  margin-top: 30px;
  background-color: #FBFBF9;
}
@media screen and (min-width: 600px) {
  .p_form .l_container {
    margin-top: 6.8rem;
    margin-top: 100px;
    background-color: #FBFBF9;
  }
}

.p_thanks {
  padding-top: 50px;
}
@media screen and (min-width: 600px) {
  .p_thanks {
    padding-top: 100px;
  }
}
/* .p_thanks .l_container {
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 1.7rem;
} */
/* @media screen and (min-width: 600px) {
  .p_thanks .l_container {
    margin-top: -12rem;
    margin-bottom: -0.2rem;
  }
} */
.p_thanks_inner {
  /* position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 52.6rem;
  padding-top: 8.3rem;
  padding-bottom: 8rem; */
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_thanks_inner {
    /* height: 61.4rem;
    padding-top: 15rem;
    padding-bottom: 14.1rem; */
  }
}
/* .p_thanks_inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%);
  width: 52.6rem;
  height: 52.6rem;
  border-radius: 50%;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_thanks_inner::before {
    width: 61.4rem;
    height: 61.4rem;
  }
} */
.p_thanks_inner .btn {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .p_thanks_inner .btn {
    margin-top: 60px;
  }
}
.p_thanks_inner h3 {
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  margin-bottom:40px ;
  font-size: 18px;
}
@media screen and (min-width: 600px) {
  .p_thanks_inner h3 {
    font-size: 27px;
  }
}
.p_thanks_inner p {
  font-size: 13px;
  line-height: 1.875em;
  text-align: left;
}
.p_thanks_inner br {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_thanks_inner p {
    font-size: 16px;
  text-align: center;
  }
  .p_thanks_inner br {
    display: block;
  }
}

.p_error {
  padding-top: 50px;
}
@media screen and (min-width: 600px) {
  .p_error {
    padding-top: 136px;
  }
}
.p_error .l_container {
  /* overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 1.7rem; */
}
@media screen and (min-width: 600px) {
  /* .p_error .l_container {
    margin-top: -12rem;
    margin-bottom: -0.2rem;
  } */
}
.p_error .e_heading-l {
  /* margin-bottom: 2.4rem; */
}
@media screen and (min-width: 600px) {
  .p_error .e_heading-l {
    /* margin-bottom: 4.2rem; */
  }
}
.p_error_inner {
  position: relative;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  height: 52.6rem; */
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.p_error_inner .ttlBox p{
  text-align: left;
}
@media screen and (min-width: 600px) {
  /* .p_error_inner {
    height: 61.4rem;
  } */
}
/* .p_error_inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%);
  width: 52.6rem;
  height: 100%;
  border-radius: 50%;
  background-color: #F0FBFF;
} */
@media screen and (min-width: 600px) {
  /* .p_error_inner::before {
    width: 61.4rem;
  } */
}
.p_error_inner h3 {
  margin-top: 1.8rem;
  margin-bottom: 1.9rem;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.76em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_error_inner h3 {
    margin-top: 3.8rem;
    margin-bottom: 3.2rem;
  }
}
.p_error_inner p {
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 2em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_error_inner p {
    margin-bottom: 60px;
    line-height: 1.875em;
    font-size: 16px;
  }
}

.p_recruitArchive .l_container {
  margin-top: 5.3rem;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitArchive .l_container {
    margin-top: 7.4rem;
  }
}
.p_recruitArchive .e_heading-l .en {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_recruitArchive .e_heading-l .en {
    letter-spacing: 0, 8em;
  }
}
.p_recruitArchive .error {
  margin-top: 8.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}
.p_recruitArchiveSearch {
  padding-top: 4.5rem;
  padding-bottom: 4.6rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_recruitArchiveSearch {
    width: 122.7rem;
    padding-top: 7.2rem;
    padding-bottom: 6.8rem;
    padding-left: 25.8rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}
.p_recruitArchiveSearch .c_searchArea {
  width: 31rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_recruitArchiveSearch .c_searchArea {
    width: auto;
    margin: 0;
  }
}
.p_recruitArchiveSearch .c_searchAreaForm {
  margin: 0;
}
.p_recruitArchive .c_recruitList {
  margin-top: 6.4rem;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitArchive .c_recruitList {
    margin-top: 9.7rem;
    margin-bottom: 10.7rem;
  }
}
.p_recruitSingle .c_subpageHeader .p_recruitSingleTop {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle .c_subpageHeader .p_recruitSingleTop {
    display: block;
    position: absolute;
    top: 20.4rem;
    left: calc((var(--vw, 1vw) * 100 - 107.8rem) / 2);
    width: 28.7rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p_recruitSingle .l_container {
  margin-top: 3.2rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle .l_container {
    margin-top: 6.8rem;
  }
}
.p_recruitSingle_heading {
  color: #45B7D2;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle_heading {
    letter-spacing: 0.08em;
  }
}
.p_recruitSingle_button a {
  display: flex;
  align-items: center;
  height: 6.8rem;
  border-radius: 100vh;
  padding-left: 2.1rem;
  background-color: #45B7D2;
  color: #FFFFFF;
  font-size: 3.4rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle_button a {
    width: 36.7rem;
    height: 8.1rem;
    margin: 0 auto;
    padding-left: 2.4rem;
    font-size: 4.1rem;
  }
}
.p_recruitSingle_button a::before {
  content: "";
  width: 3.9rem;
  height: 3.9rem;
  background-image: url(../image/common/button_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle_button a::before {
    width: 4.7rem;
    height: 4.7rem;
  }
}
.p_recruitSingle_button a span {
  flex: 1;
  padding-right: 2rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingle_button a span {
    padding-right: 2.6rem;
  }
}
.p_recruitSingleMain {
  margin-bottom: 11.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleMain .l_inner {
    width: 90.4rem;
    margin-bottom: 15.2rem;
  }
}
.p_recruitSingleTop {
  margin-bottom: 3.3rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleTop {
    display: none;
  }
}
.p_recruitSingleTop_title {
  margin-bottom: 1rem;
  color: #45B7D2;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleTop_title {
    margin-bottom: 1.7rem;
  }
}
.p_recruitSingleTop_description {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 2em;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleTop_description {
    line-height: 2.14em;
  }
}
.p_recruitSingleData {
  margin-bottom: 12rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleData {
    margin-bottom: 9.3rem;
  }
}
.p_recruitSingleData_item {
  display: grid;
  padding: 1.9rem 0 1.3rem;
  border-bottom: solid 0.1rem #E3E3E3;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleData_item {
    grid-template-columns: 1fr auto;
    padding: 1.9rem 0 1.6rem;
  }
}
.p_recruitSingleData_item:first-of-type {
  margin-top: 1.4rem;
  border-top: solid 0.1rem #E3E3E3;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleData_item:first-of-type {
    margin-top: 3rem;
  }
}
.p_recruitSingleData_title {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleData_title {
    margin-top: 0.6rem;
    margin-bottom: 0;
  }
}
.p_recruitSingleData_detail {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2.14em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleData_detail {
    width: 72rem;
    margin-top: -0.3rem;
    line-height: 2.5em;
  }
}
.p_recruitSinglePoint {
  margin-bottom: 13rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint {
    margin-bottom: 10.1rem;
  }
}
.p_recruitSinglePoint_item {
  margin-bottom: 4.8rem;
}
.p_recruitSinglePoint_item:first-of-type {
  margin-top: 1.8rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint_item {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 6.6rem;
  }
}
.p_recruitSinglePoint_number {
  width: 11.5rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  padding-right: 0.7rem;
  border: solid 0.1rem #45B7D2;
  border-radius: 100vh;
  color: #45B7D2;
  font-size: 1.7rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.6rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint_number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-column: 1/2;
    grid-row: 1/3;
    width: 10.6rem;
    height: 10.6rem;
    margin-right: 2.4rem;
    padding-top: 1rem;
    padding-left: 1rem;
    font-size: 2.1rem;
  }
}
.p_recruitSinglePoint_number span {
  margin-right: 0.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint_number span {
    display: block;
    margin-right: 0;
  }
}
.p_recruitSinglePoint_title {
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: solid 0.1rem #45B7D2;
  color: #45B7D2;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.71em;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint_title {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-bottom: 0;
    letter-spacing: 0.12em;
    line-height: 1.93em;
  }
}
.p_recruitSinglePoint_detail {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.78em;
}
@media screen and (min-width: 600px) {
  .p_recruitSinglePoint_detail {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.p_recruitSingleReason {
  margin-bottom: 5.3rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 7.5rem;
         column-gap: 7.5rem;
    margin-bottom: 7.9rem;
  }
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason .p_recruitSingle_heading {
    grid-column: 1/4;
  }
}
.p_recruitSingleReason_item {
  margin-bottom: 5.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason_item {
    margin-top: 2.4rem;
    margin-bottom: 0;
  }
}
.p_recruitSingleReason_item:first-of-type {
  margin-top: 1.6rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason_item:first-of-type {
    margin-top: 2.4rem;
  }
}
.p_recruitSingleReason_item:last-of-type {
  margin-bottom: 0;
}
.p_recruitSingleReason_image {
  overflow: hidden;
  width: 100%;
  height: 20.1rem;
  margin-bottom: 1.4rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason_image {
    height: 20.6rem;
    margin-bottom: 2.4rem;
  }
}
.p_recruitSingleReason_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p_recruitSingleReason_title {
  margin-bottom: 0.9rem;
  color: #45B7D2;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.71em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason_title {
    margin-bottom: 1.1rem;
    letter-spacing: 0.08em;
    line-height: 1.47em;
  }
}
.p_recruitSingleReason_detail {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.78em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleReason_detail {
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}
.p_recruitSingleOther {
  padding-top: 7.9rem;
  padding-bottom: 7rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleOther {
    padding-top: 8.3rem;
  }
}
.p_recruitSingleOther .c_recruitList {
  margin-top: 2.7rem;
  margin-bottom: 6.1rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleOther .c_recruitList {
    margin-bottom: 6.4rem;
  }
}
.p_recruitSingleSearch {
  padding: 4.4rem 0 9.1rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleSearch {
    padding: 6.1rem 0 6rem;
  }
}
@media screen and (min-width: 600px) {
  .p_recruitSingleSearch .e_heading-l {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding-left: 5.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_recruitSingleSearch .e_heading-l .en {
    font-size: 6rem;
  }
}
.p_recruitSingleSearch .e_heading-l .jp {
  margin-top: 0.6rem;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleSearch .e_heading-l .jp {
    margin-bottom: 0.8rem;
    margin-left: 1.9rem;
  }
}
.p_recruitSingleSearch_description {
  margin-top: 2rem;
  margin-bottom: 2.9rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_recruitSingleSearch_description {
    margin-bottom: 4.4rem;
    margin-top: 1.6rem;
    line-height: 2.1em;
    text-align: center;
  }
}

@media screen and (min-width: 600px) {
  .p_newsBlogArchive .c_subpageHeader_image {
    width: 94.5rem;
  }
}
.p_newsBlogArchive .l_container {
  margin-top: 5.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchive .l_container {
    margin-bottom: 1.2rem;
  }
}
.p_newsBlogArchive .error {
  margin-top: 8.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}
.p_newsBlogArchive .c_newsBlogList {
  margin-top: 5rem;
  margin-bottom: 1.1rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchive .c_newsBlogList {
    margin-top: 6.1rem;
    margin-bottom: 8.4rem;
  }
}
.p_newsBlogArchive .c_newsBlogList-wrap {
  display: none;
}
.p_newsBlogArchive input[type=radio] {
  display: none;
}
.p_newsBlogArchiveTab_category {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3.1rem;
       column-gap: 3.1rem;
  margin-bottom: 2.3rem;
}
.p_newsBlogArchiveTab_category .p_newsBlogArchiveTab_heading {
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveTab_category {
    margin-bottom: 0;
  }
}
.p_newsBlogArchiveTab_category label {
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
  padding-left: 2.8rem;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveTab_category label {
    margin-top: 0.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .p_newsBlogArchiveTab_category label {
    margin-top: 0.2rem;
  }
}
.p_newsBlogArchiveTab_category label span {
  text-transform: capitalize;
  color: #DEDEDE;
  font-size: 2.3rem;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
.p_newsBlogArchiveTab_category label::before, .p_newsBlogArchiveTab_category label::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.p_newsBlogArchiveTab_category label::before {
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  background-color: #DEDEDE;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveTab_category label::before {
    top: 0.3rem;
  }
}
.p_newsBlogArchiveTab_category label::after {
  top: 0.8rem;
  left: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #FFFFFF;
  opacity: 0;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveTab_category label::after {
    top: 1rem;
  }
}
.p_newsBlogArchive #tab-news:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-news::before,
.p_newsBlogArchive #tab-blog:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-blog::before {
  background-color: #45B7D2;
}
.p_newsBlogArchive #tab-news:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-news::after,
.p_newsBlogArchive #tab-blog:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-blog::after {
  opacity: 1;
}
.p_newsBlogArchive #tab-news:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-news span,
.p_newsBlogArchive #tab-blog:checked ~ .p_newsBlogArchiveSearch .p_newsBlogArchiveTab_category #button-blog span {
  color: #45B7D2;
}
.p_newsBlogArchive #tab-news:checked ~ #news,
.p_newsBlogArchive #tab-blog:checked ~ #blog {
  display: block;
}
.p_newsBlogArchiveSearch {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveSearch {
    flex-direction: row;
  }
}
.p_newsBlogArchiveSearch_heading {
  width: 100%;
  margin-bottom: 0.9rem;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.p_newsBlogArchiveSearch_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveSearch_text {
    justify-content: flex-start;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
.p_newsBlogArchiveSearch_text input[type=search] {
  width: 24rem;
  height: 4.3rem;
  padding: 0 1.2rem;
  border: solid 0.1rem #707070;
  border-radius: 100vh;
  background-color: #FFFFFF;
  font-size: 1.4em;
  letter-spacing: 0.08em;
}
.p_newsBlogArchiveSearch_text input[type=search]::-moz-placeholder {
  color: #C3C3C3;
}
.p_newsBlogArchiveSearch_text input[type=search]::placeholder {
  color: #C3C3C3;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveSearch_text input[type=search] {
    height: 3.5rem;
  }
}
.p_newsBlogArchiveSearch_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  height: 4.3rem;
  border: none;
  border-radius: 100vh;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveSearch_submit {
    width: 25.6rem;
    height: 3.5rem;
  }
}
.p_newsBlogArchiveSearch_submit img {
  width: 1.9rem;
  height: 1.9rem;
}
.p_newsBlogArchiveSearch_submit span {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_newsBlogArchiveSearch_submit span {
    display: inline-block;
    margin-top: -0.2rem;
    margin-left: 1.4rem;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
.p_newsBlogSingle {
  padding-top: 10.4rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingle {
    padding-top: 16.8rem;
  }
}
.p_newsBlogSingle .l_container {
  margin-top: 4.1rem;
  margin-bottom: 10.1rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingle .l_container {
    margin-top: 2.7rem;
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingle_inner {
    display: flex;
    justify-content: space-between;
  }
}
.p_newsBlogSingleMain {
  margin-bottom: 13rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain {
    margin-bottom: 0;
    width: 73.6rem;
  }
}
.p_newsBlogSingleMain_header {
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: solid 0.1rem #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_header {
    margin-bottom: 3.5rem;
    padding-bottom: 2.8rem;
  }
}
.p_newsBlogSingleMain_date {
  margin-right: 0.6rem;
  color: #9B9B9B;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_date {
    margin-right: 1.9rem;
    font-size: 1.5rem;
  }
}
.p_newsBlogSingleMain_category {
  min-width: 8.4rem;
}
.p_newsBlogSingleMain_title {
  margin-top: 0.7rem;
  color: #292929;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_title {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }
}
.p_newsBlogSingleMain_thumbnail {
  overflow: hidden;
  margin-bottom: 1.6rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_thumbnail {
    margin-bottom: 3.6rem;
  }
}
.p_newsBlogSingleMain_thumbnail img {
  width: 100%;
  height: auto;
}
.p_newsBlogSingleMain_content {
  margin-bottom: 5rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content {
    margin-bottom: 7.5rem;
  }
}
.p_newsBlogSingleMain_content #toc_container {
  margin-top: 3rem;
  margin-bottom: 4.7rem;
  border-radius: 0.5rem;
  padding: 3.7rem 1rem 2.9rem 1.8rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container {
    margin-top: 6.4rem;
    padding: 5.4rem 1rem 4.5rem 4.9rem;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #707070;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container .toc_title {
    margin-bottom: 1.9rem;
    color: #3E3E3E;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_list li {
  margin-bottom: 2.2rem;
}
.p_newsBlogSingleMain_content #toc_container .toc_list li:last-child {
  margin-bottom: 0;
}
.p_newsBlogSingleMain_content #toc_container .toc_list li a {
  display: flex;
  margin-bottom: 0.5rem;
  color: #292929;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.79em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container .toc_list li a {
    color: #3E3E3E;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_list li a .toc_number {
  margin-right: 0.3rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container .toc_list li a .toc_number {
    margin-right: 0.6rem;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_list li ul {
  margin-top: 0.5rem;
  padding-left: 1.4rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container .toc_list li ul {
    margin-top: 0;
    padding-left: 2.2rem;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_list li ul li {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content #toc_container .toc_list li ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }
}
.p_newsBlogSingleMain_content #toc_container .toc_list li ul li a .toc_number {
  margin-right: 1.4rem;
}
.p_newsBlogSingleMain_content p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.93em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content p {
    letter-spacing: 0.12em;
    line-height: 2.5em;
  }
}
.p_newsBlogSingleMain_content h2 {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.9rem;
  border-bottom: solid 0.1rem #DEDEDE;
  color: #3C3C3C;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content h2 {
    color: #3E3E3E;
    margin-bottom: 2.2rem;
    padding-bottom: 2.4rem;
  }
}
.p_newsBlogSingleMain_content h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 3.5rem;
  height: 0.2rem;
  background-color: #45B7D2;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content h2::before {
    width: 5.5rem;
  }
}
.p_newsBlogSingleMain_content h3 {
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.6rem;
  border-bottom: solid 0.1rem #DEDEDE;
  color: #3C3C3C;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain_content h3 {
    margin-top: 7.3rem;
    margin-bottom: 1.9rem;
    padding-bottom: 1.8rem;
    border-bottom: solid 0.1rem #C3C3C3;
    color: #3E3E3E;
    font-size: 1.7rem;
  }
}
.p_newsBlogSingleMain_content a {
  color: #45B7D2;
  font-weight: 700;
}
.p_newsBlogSingleMain_content img {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleMain .e_linkArrow {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebar {
    width: 27.6rem;
  }
}
.p_newsBlogSingleSidebar_item {
  margin-bottom: 6.5rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebar_item {
    margin-bottom: 6rem;
  }
}
.p_newsBlogSingleSidebar_item:last-of-type {
  margin-bottom: 0;
}
.p_newsBlogSingleSidebar_title {
  margin-bottom: 2rem;
  padding-bottom: 0.9rem;
  background-image: linear-gradient(to right, #45B7D2 2px, transparent 2px);
  background-size: 0.8rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left bottom;
  color: #9B9B9B;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebar_title {
    margin-bottom: 1.7rem;
    padding-bottom: 1em;
    font-size: 1.7rem;
  }
}
.p_newsBlogSingleSidebarPost_item {
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebarPost_item {
    margin-bottom: 0.9rem;
  }
}
.p_newsBlogSingleSidebarPost_item:last-child {
  margin-bottom: 0;
}
.p_newsBlogSingleSidebarPost_item a {
  display: flex;
  color: #292929;
}
.p_newsBlogSingleSidebarPost_thumbnail {
  overflow: hidden;
  width: 13.9rem;
  height: 10.6rem;
  margin-right: 1.9rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebarPost_thumbnail {
    width: 12.3rem;
    height: 9.3rem;
    margin-right: 1.7rem;
  }
}
.p_newsBlogSingleSidebarPost_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p_newsBlogSingleSidebarPost_text {
  flex: 1;
  margin-top: 0.4rem;
}
@media screen and (min-width: 600px) {
  .p_newsBlogSingleSidebarPost_text {
    margin-top: 0.3rem;
  }
}
.p_newsBlogSingleSidebarPost_date {
  display: inline-block;
  margin-bottom: 1rem;
  color: #9B9B9B;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p_newsBlogSingleSidebarPost_title {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.43em;
}

@media screen and (min-width: 600px) {
  .p_interviewArchive .c_subpageHeader_image {
    width: 94.5rem;
  }
}
.p_interviewArchive .l_container {
  margin-top: 3.4rem;
}
@media screen and (min-width: 600px) {
  .p_interviewArchive .l_container {
    margin-top: 4rem;
  }
}
.p_interviewArchive_top {
  margin-bottom: 5.5rem;
}
@media screen and (min-width: 600px) {
  .p_interviewArchive_top {
    margin-bottom: 8rem;
  }
}
.p_interviewArchive_top p {
  color: #292929;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .p_interviewArchive_top p {
    line-height: 2.29em;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewArchive_top p br._xl_hide {
    display: none;
  }
}
.p_interviewArchive .c_interviewList-wrap {
  padding: 6.9rem 0;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_interviewArchive .c_interviewList-wrap {
    padding: 12.1rem 0;
  }
}
.p_interviewSingle {
  overflow: hidden;
}
.p_interviewSingleMainVisual {
  position: relative;
  margin-bottom: 0.9rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisual {
    margin-bottom: 2.3rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisual_image {
    width: 101.4rem;
    height: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p_interviewSingleMainVisual_image {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.p_interviewSingleMainVisual_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisual_image img {
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 1280px) {
  .p_interviewSingleMainVisual_image img {
    -o-object-position: left;
       object-position: left;
  }
}
.p_interviewSingleMainVisual_message {
  position: absolute;
  top: 21.2rem;
  left: 3.1rem;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.64em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisual_message {
    top: 38.2rem;
    left: 13.8rem;
    font-size: 3.3rem;
    line-height: 1.55em;
  }
}
.p_interviewSingleMainVisual_message img {
  mix-blend-mode: multiply;
}
.p_interviewSingleMainVisualProfile {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  bottom: -4.9rem;
  right: -1.2rem;
  width: 17.4rem;
  height: 17.4rem;
  padding: 0 0 0 3.1rem;
  background-color: #45B7D2;
  border-radius: 50%;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile {
    justify-content: flex-start;
    bottom: 0;
    right: 0;
    width: 41.5rem;
    height: 12.5rem;
    padding: 3.1rem 0 0 4.2rem;
    border-radius: 0;
    border-top-left-radius: 5rem;
  }
}
.p_interviewSingleMainVisualProfile_detail {
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile_detail {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile_detail span {
    margin-left: 1.8rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile_detail br {
    display: none;
  }
}
.p_interviewSingleMainVisualProfile_name {
  color: #FFFFFF;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile_name {
    font-size: 2.5rem;
  }
}
.p_interviewSingleMainVisualProfile_name span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainVisualProfile_name span {
    display: inline;
    margin-left: 1.7rem;
    font-size: 1.4rem;
  }
}
.p_interviewSingle_heading {
  position: absolute;
  top: 17.4rem;
  left: 3.1rem;
  color: #45B7D2;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
}
@media screen and (min-width: 600px) {
  .p_interviewSingle_heading {
    top: 24.3rem;
    left: 13.8rem;
  }
}
.p_interviewSingle .l_container {
  margin-top: 7.2rem;
  margin-bottom: 8.7rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingle .l_container {
    margin-top: 28rem;
    margin-bottom: 9.7rem;
  }
}
.p_interviewSingleMain {
  margin-bottom: 8.9rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain {
    margin-bottom: 35.7rem;
    background-color: transparent;
  }
}
.p_interviewSingleMain_item {
  padding-bottom: 4.2rem;
  background-color: #F0FBFF;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item {
    position: relative;
    padding-bottom: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(1) {
    position: relative;
    display: flex;
    margin-bottom: 13.4rem;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(1)::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -21.4rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 101.4rem;
    background-image: url(../image/corporate/xl_interviewSingle_bg_01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(1) .p_interviewSingleMain_image {
    position: absolute;
    overflow: hidden;
    top: -13.1rem;
    left: 0;
    width: 59.7rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(1) .p_interviewSingleMainText {
    width: 86.6rem;
    margin-left: auto;
    padding: 6.5rem 19.4rem 7.1rem 7.3rem;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(2) {
    position: relative;
    margin-bottom: 13.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(2)::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -71.7rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 99.9rem;
    background-image: url(../image/corporate/xl_interviewSingle_bg_02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(2) .p_interviewSingleMain_image {
    overflow: hidden;
    width: 106.6rem;
    margin: 0 auto;
    border-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(2) .p_interviewSingleMainText {
    width: 88.4rem;
    margin: -10rem auto 0;
    padding: 6rem 14.1rem 7.1rem;
    border-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(3) .p_interviewSingleMain_image {
    position: absolute;
    overflow: hidden;
    top: 11.3rem;
    right: 0;
    width: 60.3rem;
    margin: 0 auto;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMain_item:nth-of-type(3) .p_interviewSingleMainText {
    width: 86.9rem;
    margin-right: auto;
    padding: 5.9rem 7.1rem 6.5rem 18.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }
}
.p_interviewSingleMainText {
  position: relative;
  z-index: 1;
  width: 33rem;
  margin: -5.5rem auto 0;
  padding: 3.3rem 2.3rem 2.1rem;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText {
    margin: 0;
    border-radius: 0;
  }
}
.p_interviewSingleMainText_question {
  margin-bottom: 1.7rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText_question {
    display: flex;
    position: relative;
  }
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText_question::before {
    content: "";
    display: inline-block;
    width: 4.2rem;
    height: 0.1rem;
    margin-top: 1.9rem;
    margin-right: 1.3rem;
    background-color: #318AC7;
  }
}
.p_interviewSingleMainText_question span {
  color: #318AC7;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.76em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText_question span {
    flex: 1;
    line-height: 2.1em;
  }
}
.p_interviewSingleMainText_answer {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.29em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText_answer {
    white-space: nowrap;
  }
}
.p_interviewSingleMainText_answer br {
  display: none;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleMainText_answer br {
    display: inline;
  }
}
.p_interviewSingleOther .e_heading-l {
  margin-bottom: 3.1rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOther .e_heading-l {
    margin-bottom: 4.6rem;
  }
}
.p_interviewSingleOther .e_heading-l .en {
  font-size: 3.5rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOther .e_heading-l .en {
    font-size: 5.5rem;
  }
}
.p_interviewSingleOtherList {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList {
    width: 91.9rem;
    margin: 0 auto 9.5rem;
  }
}
.p_interviewSingleOtherList::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.1rem;
  height: 100%;
  background-color: #45B7D2;
}
.p_interviewSingleOtherList_item {
  position: relative;
  width: 12rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_item {
    width: auto;
  }
}
.p_interviewSingleOtherList_item:last-of-type {
  margin-left: 1rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_item a {
    display: flex;
  }
}
.p_interviewSingleOtherList_thumbnail {
  overflow: hidden;
  width: 100%;
  height: 17.9rem;
  margin-bottom: 1.3rem;
  border-radius: 1.5rem;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_thumbnail {
    width: 25.8rem;
    height: 23.6rem;
    margin-bottom: 0;
  }
}
.p_interviewSingleOtherList_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_text {
    margin-left: 1.8rem;
  }
}
.p_interviewSingleOtherList_detail {
  color: #292929;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.43em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_detail {
    margin-bottom: 1.1rem;
    line-height: 1.79em;
  }
}
.p_interviewSingleOtherList_name {
  display: flex;
  flex-direction: column;
  color: #292929;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_name {
    font-size: 2.1rem;
  }
}
.p_interviewSingleOtherList_name span {
  margin-top: 0.9rem;
  color: #45B7D2;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOtherList_name span {
    margin-top: 1.4rem;
  }
}
.p_interviewSingleOther_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5.2rem;
  padding: 0;
  border-radius: 100vh;
  background-color: #45B7D2;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_interviewSingleOther_button {
    width: 22.5rem;
    height: 4.2rem;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
.p_interviewSingleOther_button:hover {
  color: #FFFFFF;
  opacity: 0.5;
}

.p_shopHome .e_heading-l .en {
  letter-spacing: 0.04em;
}
.p_shopHome .l_container {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 600px) {
  .p_shopHome .l_container {
    margin-bottom: 2.3rem;
  }
}
.p_shopHome .c_productList {
  margin-bottom: 3.7rem;
}
@media screen and (min-width: 600px) {
  .p_shopHome .c_productList {
    margin-bottom: 8rem;
  }
}
.p_shopHome .c_archiveSearch {
  margin-top: 4.3rem;
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 600px) {
  .p_shopHome .c_archiveSearch {
    margin-top: 5rem;
    margin-bottom: 4rem;
  }
}

.p_shopSingle {
  padding-top: 10.4rem;
  padding-top: 50px;
}
@media screen and (min-width: 600px) {
  .p_shopSingle {
    padding-top: 16.8rem;
    padding-top: 136px;
  }
}
.p_shopSingle .c_subpageHeader {
  margin-bottom: 2.4rem;
}
.p_shopSingle .l_container {
  margin-bottom: 35px;
}
@media screen and (min-width: 600px) {
  .p_shopSingle .l_container {
    margin-bottom: 100px;
  }
}
.p_shopSingle .l_inner {
  width: 30.9rem;
  width: 90%;
  max-width: 1080px;
}
@media screen and (min-width: 600px) {
  .p_shopSingle .l_inner {
    width: 108.6rem;
    width: 90%;
    max-width: 1080px;
  }
}
.p_shopSingle_body {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p_shopSingle_body {
    column-gap: 100px;
  }
}
@media screen and (min-width: 600px) {
  .p_shopSingle_body {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    flex-direction: row;
    -moz-column-gap: 9.6rem;
    column-gap: 9.6rem;
    -moz-column-gap: 100px;
    padding-top: 0;
    column-gap: 50px;
  }
}


/* .p_shopSingleImage {
  width: 100%;
  margin-bottom: 2.7rem;
} */
.p_shopSingleImage {
  width: 32.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .p_shopSingleImage {
    width: 24.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p_shopSingleImage {
    width: 18.5rem;
  }
}
@media screen and (max-width: 600px) {

  .p_shopSingleImage {
    width: 100%;
    margin-bottom: 2.7rem;
  }
}
.p_shopSingleImage_main {
  margin-bottom: 13px;
}

.p_shopSingleImage_main .swiper-slide img {
  height: 37.1rem;
  height: 15rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 23.5rem;

}
@media screen and (max-width:1000px) {
  .p_shopSingleImage_main .swiper-slide img {
    height: 11.5rem;
    height: 17rem;

  }
}
@media screen and (max-width:768px) {
  .p_shopSingleImage_main .swiper-slide img {
    height: 11.5rem;
    height: 13rem;

  }
}
@media screen and (max-width: 600px) {
  .p_shopSingleImage_main .swiper-slide img {
    height: 37.1rem;
    height: 15rem;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.p_shopSingleImage_thumbnail .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleImage_thumbnail .swiper-slide {
    border-radius: 12px;
    cursor: pointer;
  }
}
.p_shopSingleImage_thumbnail .swiper-slide img {
  height: 4.8rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
    height: 7.8rem;

}
@media screen and (max-width: 1000px) {
  .p_shopSingleImage_thumbnail .swiper-slide img {
    height: 5.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p_shopSingleImage_thumbnail .swiper-slide img {
    height: 4.8rem;
  }
}
@media screen and (max-width: 600px) {
  .p_shopSingleImage_thumbnail .swiper-slide img {
    height: 5rem;
  }
}

.p_shopSingleImage_thumbnail .swiper-slide-thumb-active {
  position: relative;
}
.p_shopSingleImage_thumbnail .swiper-slide-thumb-active::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #DEDEDE;
  mix-blend-mode: multiply;
}
.p_shopSingleDetail_title {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing:0;
  line-height: 1.4em;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetail_title {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.p_shopSingleDetail_information {
  margin-top: 0;
  margin-bottom: 35px;
}
.p_shopSingleDetail_price {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetail_price {
    display: inline-block;
    margin-bottom: 40px;
  }
}
.p_shopSingleDetail_price .tax {
  display: inline-block;
  color: #000;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 0px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetail_price .tax {
    font-size: 13px;
    margin-left: 5px;
  }
}
.p_shopSingleDetailOption {
  align-items: center;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
}
.p_shopSingleDetailOption-wrap {
  flex-direction: column;
  row-gap: 1.8rem;
  margin-bottom: 1.8rem;
}
.p_shopSingleDetailOption_title {
  color: #292929;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 1.2em;
}
.p_shopSingleDetailOption_select {
  position: relative;
}
.p_shopSingleDetailOption_select::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 0.8rem;
  background-image: url(../image/ec/selectArrow_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  pointer-events: none;
}
.p_shopSingleDetailOption_select select {
  min-width: 18.2rem;
  height: 4.1rem;
  background-image: none;
  border: solid 0.05rem #292929;
  color: #292929;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.p_shopSingleDetailCart_button input {
  width: 100%;
  height: auto;
  border-radius: 50px;
  background-color: #000;
  color: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px;
  padding: 15px 5px 15px 10px;
  line-height: 1.66em;
  position: relative;
  border: 2px solid #000;
}

.p_shopSingleDetailCart_button input:hover {
  opacity: 0.75;
  background-color: #000;

}
.p_shopSingleDetailCart_button{
  position: relative;
  max-width: 305px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetailCart_button{
    position: relative;
    max-width: 300px;
    margin: 0  auto 0 0 ;
  }
}
.p_shopSingleDetailCart_button::before {
  display: block;
	position: absolute;
  content: "";
  width: 22px;
  height: 19px;
  top: 50%;
  left: 23%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(./images/ico_cart_white.svg) right center no-repeat;
  background-size: 100% auto;
  z-index: 1;
}
.p_shopSingleDetailQuantity {
  align-items: center;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  margin-bottom: 3.4rem;
  margin-bottom: 30px;
}
.p_shopSingleDetailQuantity_title {
  color: #000;
  letter-spacing: 0;
  line-height: 1.2em;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetailQuantity_title {
    font-size: 16px;
  }
}
.p_shopSingleDetailQuantity_input {
  position: relative;
}
.p_shopSingleDetailQuantity_input input {
  /* width: 11.8rem;
  height: 4.1rem; */
  background-image: none;
  padding-bottom: 0.3rem;
  border: solid 2px #000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  width: 118px;
  height: 38px;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetailQuantity_input input {
    font-size: 19px;
  }
}
.p_shopSingleDetailQuantity_input .minus,
.p_shopSingleDetailQuantity_input .plus {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
}
.p_shopSingleDetailQuantity_input .minus::before,
.p_shopSingleDetailQuantity_input .plus::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 0.2rem;
  border-radius: 2rem;
}
.p_shopSingleDetailQuantity_input .plus {
  right: -5px;
}
.p_shopSingleDetailQuantity_input .plus::before, .p_shopSingleDetailQuantity_input .plus::after {
  background-color: #FDD700;
}
.p_shopSingleDetailQuantity_input .plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 1rem;
  height: 0.2rem;
  border-radius: 2rem;
}
.p_shopSingleDetailQuantity_input .minus {
  left: -5px;
}
.p_shopSingleDetailQuantity_input .minus::before {
  background-color: #c1c1c1;
}
.p_shopSingleDetailText {
  margin-bottom: 0;
  border: none;
}
.p_shopSingleDetailText_title {
  position: relative;
  color: #000;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  font-size: 14px;
  padding: 10px 0px 10px 18px;
  border-bottom: 2px solid #000;
}
.p_shopSingleDetailText_title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width:8px;
  height: 8px;
  background: url(./images/ico_circle_yellow.svg) left center no-repeat;
  background-size: 8px auto;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetailText_title {
    position: relative;
    color: #000;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    font-size: 15px;
    padding: 15px 0px 15px 20px;
    border-bottom: 2px solid #000;
  }
  .p_shopSingleDetailText_title::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width:10px;
    height: 10px;
    background: url(./images/ico_circle_yellow.svg) left center no-repeat;
    background-size: 10px auto;
  }
}

/* .p_shopSingleDetailText_title::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.p_shopSingleDetailText_title._close::after {
  transform: rotate(0);
} */
.p_shopSingleDetailText_description {
  padding-top: 10px;
}
.p_shopSingleDetailText_description p {
  letter-spacing: 0;
  line-height: 1.46em;
  margin-bottom: 15px;
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleDetailText_description {
    padding-top: 20px;
  }

}
.p_shopSingleRecommend {
  padding: 0;
  text-align: left;
  width: 90%;
  margin: 0 auto;
}
.p_shopSingleRecommend .ttlBox{
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .p_shopSingleRecommend {
    padding: 0;
    text-align: center;
  }
  .p_shopSingleRecommend .ttlBox{
    margin-bottom: 60px;
  }
}
.p_shopSingleRecommend .e_heading-m {
  margin-bottom: 3.8rem;
}
.p_shopSingleRecommend .e_heading-m .en {
  font-size: 5rem;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .p_shopSingleRecommend .e_heading-m .jp {
    font-weight: 400;
  }
}
.p_shopSingleRecommend .l_inner {
  width: 100%;
}
 .l_inner._search{
  width: 90%;
  padding-top: 100px;
}
@media screen and (max-width: 600px) {
  .l_inner._search{
    padding-top: 0px;
  }
}

/* @media screen and (min-width:1000px) {
  .p_shopSingleRecommend .l_inner {
    width: 108.7rem;
  }
} */
.p_shopSingleRecommend .c_productList {
  margin-bottom: 4.2rem;
}
@media screen and (min-width: 600px) {
  .p_shopSingleRecommend .c_productList {
    margin-bottom: 60px;
  }
}
.p_shopSingleRecommend .e_button {
  margin: 0 auto;
  background-image: url(./images/ico_right_white.svg);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  border: 3px solid #000;
  background-color: #000;
  max-width: 305px;
}
.p_shopSingleRecommend .e_button:hover {
  margin: 0 auto;
  background-image: url(./images/ico_right_black.svg);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  border: 3px solid #000;
  background-color: #fff;
  color: #000;
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .p_shopSingleRecommend .e_button {
    max-width: 240px;
  }
}

.item_page_title {
  margin: 0 0 0.625em;
  font-size: 1.14286em;
  line-height: 1.25em;
}

#itempage #img-box {
  margin-bottom: 1.66667em;
}

#itempage .itemimg {
  text-align: center;
}

#itempage .itemimg a {
  display: block;
}

#img-box .itemimg img {
  width: 100%;
  height: auto;
}

#itempage .itemsubimg {
  margin: 3% -3% 0 0;
  overflow: hidden;
}

#itempage .itemsubimg a {
  display: inline-block;
  width: 22%;
  margin: 0 3% 3% 0;
  float: left;
  text-align: center;
}

#itempage .itemsubimg img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/*---- item-info ---*/
#itempage .item-info {
  padding-top: 2.5em;
}

/*---- itemcode ---*/
#itempage .itemcode {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}

/*---- sku-name ---*/
.item-info .skuname {
  min-height: 30px;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #dedede;
  font-weight: bold;
}

/*---- skuform ---*/
.item-info form {
  clear: both;
}

.item-info .skuform {
  margin-bottom: 3rem;
}

.item-info form .skuform:last-child {
  margin-bottom: 0;
}

.item-info .skuform form {
  clear: both;
}

/*---- zaikostatus ---*/
.item-info .zaikostatus {
  float: left;
}

/*---- field ---*/
.item-info .field {
  padding: 0 0 1rem;
  overflow: hidden;
}

/*---- price ---*/
.item-info .field_price {
  float: right;
  font-size: 2rem;
  font-weight: bold;
}

.item-info .field_cprice {
  margin-right: 0.666667em;
  color: #999;
  font-size: 0.6em;
  font-weight: normal;
  text-decoration: line-through;
}

.item-info .field_price em {
  font-size: 0.5em;
}

/* ---- .tax_inc_block ---- */
.item-info .tax_inc_block {
  clear: both;
  font-size: 12px;
  text-align: right;
}

.item-info .tax_inc_block em {
  margin-right: 3px;
  color: #262626;
}

/*---- itemGpExp ---*/
.item-info .itemGpExp {
  margin: 2rem 0;
  padding: 2rem 1rem 0.714286em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.item-info .itemGpExp dt {
  font-weight: bold;
}

.item-info .itemGpExp .tax_inc_block {
  margin-left: 0.714286em;
}

.item-info .itemGpExp .price {
  padding: 0 0 0 0.625em;
  font-size: 1.14286em;
  font-weight: bold;
}

.item-info .itemGpExp em {
  font-size: 0.5em;
}

/*---- item-option ---*/
.item-info .item-option {
  margin-bottom: 2rem;
  padding: 2rem 1rem 0.714286em;
  clear: both;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.item-info .item-option dt {
  font-weight: bold;
}

.item-info .item-option dd {
  margin: 0 0 0.714286em;
}

.item-info .item-option select option {
  background-color: #FFFFFF;
}

.item-info .item-option input[type=text] {
  width: 60%;
}

.item-info .item-option .iopt_radio_label {
  display: block;
}

.item-info .item-option textarea {
  width: 100%;
  height: 100px;
}

/*---- c-box ---*/
.item-info .c-box {
  padding: 0;
  clear: both;
  text-align: right;
}

/*---- quantity ---*/
.item-info .quantity {
  display: inline-block;
  margin-bottom: 5px;
}

.item-info .quantity input.skuquantity {
  width: 60px !important;
  height: 40px;
  margin: 0 1rem;
  padding: 1rem;
  border: 1px solid #000;
  border-radius: 3px;
  text-align: center;
}

/*---- cart-btn ---*/
.item-info .skubutton {
  padding: 0.714286em 3rem;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #45B7D2;
  color: #FFFFFF;
  font-family: FontAwesome;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.item-info .skubutton:hover {
  background-color: #67CEE6;
  cursor: pointer;
}

/*---- incart-btn ---*/
.item-info .incart-btn {
  text-align: left;
}

/*---- itemsoldout ---*/
.item-info .itemsoldout {
  color: #45B7D2;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: right;
}

/*---- item_custom_field ---*/
.item-info ul.item_custom_field {
  margin-bottom: 3rem;
  float: right;
  line-height: 200%;
}

.item-info ul.item_custom_field li {
  padding: 0 1rem;
  border-bottom: 1px dotted #999;
}

/*---- item-info table ---*/
.item-info table.item_custom_field {
  margin-bottom: 3rem;
  float: right;
  border-collapse: collapse;
  border: 1px solid #000;
}

.item-info .item_custom_field th {
  width: 40%;
  padding: 1rem;
  border: 1px solid #000;
  background-color: #eee;
}

.item-info .item_custom_field td {
  padding: 1rem;
  border: 1px solid #000;
}

/*---- assistance_item ---*/
.assistance_item h3 {
  margin: 2rem 0 0;
  border-bottom: 3px solid #eee;
  color: #000;
}

.assistance_item ul {
  overflow: hidden;
  letter-spacing: -0.5em;
}

.assistance_item li {
  display: inline-block;
  width: 46%;
  margin-right: 8%;
  padding: 2rem 0 0;
  letter-spacing: normal;
  vertical-align: text-top;
}

.assistance_item li:nth-child(even) {
  margin-right: 0;
}

.assistance_item li .slit a {
  display: block;
  margin-bottom: 1rem;
}

.assistance_item li .slit img {
  width: 100%;
  height: auto;
}

.assistance_item li .detail h4 {
  height: 43px;
  margin: 0;
  overflow: hidden;
  font-weight: normal;
}

.assistance_item li .detail p {
  height: 60px;
  overflow: hidden;
}

.assistance_item li .detail .assist_price {
  height: 22px;
  font-weight: bold;
  text-align: right;
}

/*---- .date sku-form ---*/
.date .item-info .skuform {
  border: none;
}

/*---- dlseller ---*/
.item-info .frequency {
  margin-bottom: 0.714286em;
  text-align: right;
}

.item-info .field_frequency {
  display: inline-block;
  padding: 0 20px;
  border-radius: 3px;
  background-color: #d3222a;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
}

#itempage table.dlseller {
  width: 100%;
  margin: 2rem 0 0;
}

#itempage table.dlseller th {
  width: 50%;
  padding: 0.714286em;
  border: 1px solid #000;
  background-color: #eee;
}

#itempage table.dlseller td {
  padding: 0.714286em;
  border: 1px solid #000;
}

/* =wc_search_page.php
-------------------------------------------------------------- */
section#usces-cart .navigation {
  clear: both;
  letter-spacing: normal;
  line-height: 300%;
}

section#usces-cart form {
  letter-spacing: normal;
}

section#usces-cart form .outlabel {
  display: block;
  padding: 2rem 0 0.714286em;
}

#searchbox fieldset {
  margin-bottom: 2rem;
  padding: 0.7142857em 2rem;
  border: 1px solid #e0e0e0;
}

#searchbox legend {
  padding: 0 0.7142857em;
}

#searchbox input.usces_search_button {
  display: block;
  margin: 0 auto;
  padding: 1.071428em 3em;
  border: none;
  border-radius: 3px;
  background-color: #eee;
}

#searchbox .searchitems p {
  letter-spacing: normal;
}

/* =Cart Page + Member Page
-------------------------------------------------------------- */
/* ---- autofill ---- */
#wc_newmemberform .customer_form input#mailaddress1:-webkit-autofill,
#wc_newmemberform .customer_form input[type=password]:-webkit-autofill,
#wc_customer .customer_form input#mailaddress1:-webkit-autofill,
#wc_customer .customer_form input[type=password]:-webkit-autofill,
#wc_member .customer_form input#mailaddress1:-webkit-autofill,
#wc_member .customer_form input#password1:-webkit-autofill,
#wc_editmemberform .customer_form input#mailaddress1:-webkit-autofill,
#wc_editmemberform .customer_form input#password1:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

#wc_customer .customer_form input#loginpass:-webkit-autofill {
  box-shadow: none;
}
 .customer_form input {
  font-size: 13px;
  padding: 10px;
  /* border: 1px solid #000; */
}
 .customer_form input::placeholder {
  color: #c1c1c1;

}

@media screen and (max-width: 600px) {
  .customer_form td span.place {
    font-size: 13px;
    color: #c1c1c1;
    font-size: 11px;
  }
}
/* =cart
-------------------------------------------------------------- */
#main #content.cart-page {
  float: none;
}

/*---- page-title ---*/
.cart_page_title {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1;
}
h1.page-title{
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  h1.page-title{
    margin-bottom: 15px;
  }
}

/*---- usccart_navi ---*/
div.cart_navi ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border:1px solid #000;
  overflow: hidden;
  list-style: none;
}

div.cart_navi li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* height: 4.6rem; */
  /* padding-bottom: 0.1rem;
  padding-left: 0.5rem; */
  padding: 10px 0px;
  background-color: #FFFFFF;
  color: #000;
  font-size: 13px;
  line-height: 1.23em;
  text-align: center;
  /* font-weight: 400; */
  /* line-height: 1.5rem; */
  text-align: center;
  text-decoration: none;
}
div.cart_navi li span{
  text-align: center;
}
@media screen and (min-width: 600px) {
  div.cart_navi li {
    width: 100%;
    /* height: 6.8rem;
    padding-left: 1rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em; */
    padding: 19px 0px;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #000;
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  div.cart_navi li br {
    display: none;
  }
}

div.cart_navi li::before,
div.cart_navi li::after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  /* left: 0.3rem; */
  left: 0;
  width: 100%;
  height: 50.5%;
  border-right: 1px solid #000;
  background: #FFFFFF;
}
@media screen and (min-width: 600px) {
  div.cart_navi li::before,
  div.cart_navi li::after {
    left: 1rem;
  }
}

div.cart_navi li::before {
  top: 0;
  transform: skew(15deg);
}
@media screen and (min-width: 600px) {
  div.cart_navi li::before {
    transform: skew(30deg);
  }
}

div.cart_navi li::after {
  bottom: 0;
  transform: skew(-15deg);
}
@media screen and (min-width: 600px) {
  div.cart_navi li::after {
    transform: skew(-30deg);
  }
}

div.cart_navi li:last-child::before,
div.cart_navi li:last-child::after {
  border-right: none;
}

div.cart_navi li.current {
  background-color: #fff;
  color: #000;
}
div.cart_navi li.current._bg {
  background-color: #FDD700;
}

div.cart_navi li.current::before,
div.cart_navi li.current::after {
  background-color: #FDD700;
  color: #000;
}
div.cart_navi li.current._bg::before,
div.cart_navi li.current._bg::after {
  background-color: #FDD700;
  color: #000;
}

div.cart_navi li span {
  position: relative;
  z-index: 2;
  font-size: inherit;
}

/*---- send ---*/
.cart-page .send {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 600px) {
  .cart-page .send {
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.cart-page .send input {
  height: auto;
  padding:16px 5px;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43em;
}

.cart-page .send input:first-child{
  max-width: 370px;
}
.cart-page .send input:first-child,
.cart-page .send input:nth-child(2) ,
.cart-page .send input:nth-child(3) {
  width:100%;
  max-width: 305px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .cart-page .send input {
    /* min-width: 23rem; */
    width: 20%;
    min-width: auto;
    height: auto;
    /* padding-left: 2rem;
    padding-right: 2rem; */
    font-size: 18px;
    padding: 17px 5px;
  }
  .cart-page .send input.back_cart_button {
    width:180px ;
  }
  .cart-page .send input:first-child,
  .cart-page .send input:nth-child(2) ,
  .cart-page .send input:nth-child(3) {
    max-width: none;
  }
  .cart-page .send input:nth-child(2) ,
  .cart-page .send input:nth-child(3) {
    width:calc( calc(100% - 180px ) / 2) ;
  }
}
.cart-page .send input.continue_shopping_button, .cart-page .send input.back_to_customer_button, .cart-page .send input.back_to_delivery_button, .cart-page .send input.back_cart_button {
  border: solid 3px #000;
  background-color: #FFFFFF;
  color: #000;
  letter-spacing: 0;
}
/* @media screen and (min-width: 600px) {
  .cart-page .send input.continue_shopping_button, .cart-page .send input.back_to_customer_button, .cart-page .send input.back_to_delivery_button, .cart-page .send input.back_cart_button {
    letter-spacing: 0.18em;
  }
} */
.cart-page .send input.continue_shopping_button:hover, .cart-page .send input.back_to_customer_button:hover, .cart-page .send input.back_to_delivery_button:hover, .cart-page .send input.back_cart_button:hover {
  opacity: 0.5;
}
.cart-page .send input.back_to_delivery_button ,
.cart-page .send input#purchase_button{
  width: 48%;
}
@media screen and (max-width: 600px) {
  .cart-page .send input.back_to_delivery_button ,
  .cart-page .send input#purchase_button{
    width: 100%;
    max-width: 305px;
    margin: 0 auto;
  }
}
.cart-page .send input.to_customerinfo_button,
.send input.to_memberlogin_button,
.send input.to_deliveryinfo_button ,
.send input.to_reganddeliveryinfo_button{
  color: #fff;
  background-image: url(./images/ico_right_white.svg);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  border: 3px solid #000;
  background-color: #000;
  color: #FFFFFF;
}
.cart-page .send input.to_customerinfo_button ,
.cart-page .send input.continue_shopping_button{
  width: 48%;
  max-width: none;
}
@media screen and (max-width: 600px) {
  .cart-page .send input.to_customerinfo_button ,
  .cart-page .send input.continue_shopping_button{
    width: 100%;
    max-width: 305px !important;
    margin: 0 auto;
  }
}
.cart-page .send input.continue_shopping_button ,
.cart-page .send input.back_cart_button {
  background-image: url(./images/ico_left_black.svg);
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  border: 3px solid #000;
}

.send input.to_customerinfo_button,
.send input#purchase_button {
  background-color: #000;
  color: #FFFFFF;
  border: 2px solid #000;
}
.send input.to_confirm_button ,
.checkout_button{
  background-color: #000;
  color: #FFFFFF;
  border: 2px solid #000;
}

.send input.to_customerinfo_button:hover,
.send input.to_memberlogin_button:hover,
.send input.to_deliveryinfo_button:hover,
.send input.to_reganddeliveryinfo_button:hover {
  background-color: #fff;
  color: #000;
  background-image: url(./images/ico_right_black.svg);
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 14px auto;
}
.send input.to_confirm_button:hover ,
.send input#purchase_button:hover{
  background-color: #fff;
  color: #000;
}

/*---- header_explanation ---*/
div.header_explanation {
  margin: 2rem 0 2rem;
}
@media screen and (max-width: 600px) {
  .customer_form tr#name_row td.name_td:last-child,
  .customer_form tr#furikana_row td:last-child{
    margin-left: 2em;
  }
}
/*---- footer_explanation ---*/
div.footer_explanation {
  margin-top: 2rem;
}

/*---- cart_table ---*/
#cart_table {
  width: 100%;
  margin-bottom: 2.9rem;
  border: solid 1px #000;
  border-collapse: collapse;
  /* table-layout: fixed;
word-break: break-all;
word-wrap: break-all; */
}
@media screen and (min-width: 600px) {
  #cart_table {
    margin-bottom: 4.1rem;
  }
}
#cart_table .num {
  display: none;
}
#cart_table tfoot.confirm tr{
  justify-content: flex-end;
  height: 3.1rem;
}
#cart_table .aright._confirm {
 padding: 0;
}
#cart_table tfoot.confirm tr.width{
  justify-content: flex-end;
  width: 96%;
}
@media screen and (max-width: 768px) {
  #cart_table tfoot.confirm tr.width{
    width: 97%;
  }
}
@media screen and (max-width: 600px) {
  #cart_table tfoot.confirm tr{
    height: 2.1rem;
  }
  #cart_table tfoot.confirm tr.width{
    width: 97.3%;
  }
  #cart_table tfoot.confirm tr.width td.aright{
    font-size: 12px;
  }
}

@media screen and (min-width: 600px) {
  #cart_table .num {
    display: flex;
    grid-column: 1/2;
    justify-content: center;
    align-items: center;
    width: 6.7rem;
    width: 6%;
    border-right: solid 1px #000;
  }
}
#cart_table .num._confirm,
#cart_table .thumbnail._confirm,
#cart_table .aright._confirm{
  border-right: 0;
}
#cart_table .thumbnail {
  grid-column: 1/2;
  grid-row: 1/7;
  border-right: solid 1px #000;
}
@media screen and (min-width: 600px) {
  #cart_table .thumbnail {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 14rem;
    width: 12.7%;
  }
}
#cart_table .productname {
  grid-column: 2/4;
}
@media screen and (min-width: 600px) {
  #cart_table .productname {
    grid-column: 3/4;
    width: 34.5rem;
    width: 31.9%;
    border-right: solid 1px #000;
  }
}
#cart_table .unitprice {
  grid-column: 2/3;
}
@media screen and (min-width: 600px) {
  #cart_table .unitprice {
    grid-column: 4/5;
    border-right: solid 1px #000;
    width: 12.7%;
  }
}
@media screen and (min-width: 769px) {
  #cart_table .unitprice {
    width: 9.7%;
  }
}
#cart_table .price {
  grid-column: 2/3;
}
@media screen and (min-width: 600px) {
  #cart_table .price {
    grid-column: 4/5;
    border-right: solid 1px #000;
    width: 12.7%;
  }
}
@media screen and (min-width: 769px) {
  #cart_table .price {
    width: 9.7%;
  }
}
#cart_table .quantity {
  grid-column: 2/3;
}
@media screen and (min-width: 600px) {
  #cart_table .quantity {
    grid-column: 5/6;
    border-right: solid 1px #000;
    width: 9.7%;
  }
}
#cart_table .subtotal {
  grid-column: 2/3;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  #cart_table .subtotal {
    grid-column: 6/7;
    border-right: solid 1px #000;
    width: 12.7%;
  }
}
@media screen and (min-width: 769px) {
  #cart_table .subtotal {
    width: 9.7%;
  }
}
#cart_table .stock {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (min-width: 600px) {
  #cart_table .stock {
    grid-column: 7/8;
    grid-row: 1/2;
    border-right: none;
    width: 20.4%;
  }
}
#cart_table .action {
  grid-column: 3/4;
  grid-row: 4/5;
}
@media screen and (min-width: 600px) {
  #cart_table .action {
    grid-column: 8/9;
    grid-row: 1/2;
  }
}
#cart_table thead {
  display: none;
}
@media screen and (min-width: 600px) {
  #cart_table thead {
    display: table-row-group;
    border-bottom: solid 1px #000;
    background-color: #F2F2F2;
  }
}
@media screen and (min-width: 600px) {
  #cart_table thead tr {
    display: grid;
    display: flex;
    grid-template-columns: auto auto auto 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    height: 4.1rem;
  }
}
#cart_table thead th {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #cart_table thead th {
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  #cart_table thead th.subtotal span {
    margin-top: 5px;
    font-size: 11px;
  }
}
#cart_table tbody tr {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-bottom: solid 1px #000;
}
@media screen and (min-width: 600px) {
  #cart_table tbody tr {
    display: flex;
    grid-template-columns: auto auto auto 1fr 1fr 1fr 1fr 1fr;
    min-height: 12.5rem;
    height: 100px;
  }
}
#cart_table tbody tr:last-of-type {
  border-bottom: 0;
}
#cart_table tbody td {
  padding-left: 14px;
  font-size:12px;
  line-height: 1;
  white-space: wrap;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  #cart_table tbody td {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    padding-left: 13px;

   
  }
}
#cart_table tbody .num {
  padding-left: 0;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .num {
    width: 6%;
  }
}
#cart_table tbody .thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.6rem;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .thumbnail {
    width: 12.7%;
    padding: 0;
  }
}
#cart_table tbody .thumbnail a {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .thumbnail a {
    justify-content: center;
  }
}
#cart_table tbody .thumbnail img {
  width: 8.2rem;
  height: 8.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
select , textarea{
  border: 2px solid #000;
}

.cartbg,
.cartbg02{
  background: #efefef;
  max-width: 1080px;
  margin: 0 auto;
}
.cartbgBox,
.cartbg02Box{
  width: 93.7%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.cartbg{
  margin-bottom: 100px;
}
.c_formMargin{
  margin-bottom:0px ;
}
@media screen and (max-width: 600px) {
  .cartbg,
  .cartbg02{
    background: #efefef;
  }
  .cartbgBox,
  .cartbg02Box{
    width: 93.7%;
    margin: 0 auto;
    padding: 30px 0;
  }
  .cartbg{
    margin-bottom: 30px;
  }
  .c_formMargin{
    margin-bottom:0px ;
  }
}
@media screen and (min-width: 600px) {
  #cart_table tbody .thumbnail img {
    width: 10rem;
    height: 10rem;
    width: 86%;
    height: auto;
  }
}
#cart_table tbody .productname {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
  padding-right: 1.4rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78em;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .productname {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 13px;
    width: 31.9%;
    font-size: 16px;
  }
}
#cart_table tbody .quantity {
  display: flex;
  align-items: center;
  width: 100%;
}
#cart_table tbody .quantity::before {
  content: "数量：";
}
@media screen and (min-width: 600px) {
  #cart_table tbody .quantity::before {
    display: none;
  }
  #cart_table tbody .quantity {
    width: 9.7%;
  }
}
#cart_table tbody .quantity input {
  max-width: 63px;
  width: 75%;
  height: 30px;
  margin-left:0;
  border: solid 1px #000;
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .quantity input {
    max-width: 79px;
    width: 75%;
    height: 38px;
    font-size: 16px;
  }
}
#cart_table tbody .unitprice {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .unitprice {
    margin-bottom: 0;
    width: 12.7%;
  }
}
@media screen and (min-width: 769px) {
  #cart_table tbody .unitprice {
    width: 9.7%;
  }
}
#cart_table tbody .unitprice::before {
  content: "単価：";
}
@media screen and (min-width: 600px) {
  #cart_table tbody .unitprice::before {
    display: none;
  }
}
#cart_table tbody .subtotal {
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .subtotal {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    width: 12.7%;
  }
}
@media screen and (min-width: 769px) {
  #cart_table tbody .subtotal {
    width: 9.7%;
  }
}
#cart_table tbody .subtotal::before {
  content: "金額：";
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .subtotal::before {
    display: none;
  }
}
#cart_table tbody .stock {
  margin-bottom: 1.2rem;
  display: flex;

}
@media screen and (min-width: 600px) {
  #cart_table tbody .stock {
    margin-bottom: 0;
    width: 20.4%;
  }
}
#cart_table tbody .stock::before {
  content: "在庫状態：";
}
@media screen and (min-width: 600px) {
  #cart_table tbody .stock::before {
    display: none;
  }
}
#cart_table tbody .action {
  padding-right: 1.4rem;
  padding-left: 0;
  display: none !important;
}
/* @media screen and (min-width: 600px) {
  #cart_table tbody .action {
    justify-content: center;
    padding-right: 0;
  }
} */
#cart_table tbody .action input {
  height: 3rem;
  padding: 0 2.2rem;
  border-radius: 0;
  background-color: #FDD700;
  color: #000;
  font-size: 1.4rem;
}
@media screen and (min-width: 600px) {
  #cart_table tbody .action input {
    height: 3.3rem;
    padding: 0 2rem;
    font-size: 16px;
    font-weight: 700;
  }
}
#cart_table tfoot {
  border: solid 1px #000;
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot {
    border-top: solid 1px #000;
    background-color: #F2F2F2;
  }
}
#cart_table tfoot tr {
  display: flex;
  height: 3rem;
  align-items: center;
  justify-content: end;
  /* padding-right: 0.8rem; */
  color: #000;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot tr {
    height: 4.1rem;
    justify-content: flex-start;
    /* padding-right: 1.7rem; */
  }
}
#cart_table tfoot th {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot th {
    height: 100%;
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  #cart_table tfoot th span {
    font-size: 11px;
    margin-top: 5px;
  }
}
#cart_table tfoot th.aright {
  /* margin-left: 13px; */
  padding: 0;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot th.aright {
    border-right: 1px solid #000;
    font-size: 16px;
    width: 68.9%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 13px;
    box-sizing: border-box;
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  #cart_table tfoot th.aright {
    width: 69.9%;
  }
}
#cart_table tfoot th.amount {
  /* margin-left: 13px; */
  padding: 0;
  font-size: 14px;
  padding-left: 13px;
  box-sizing: border-box;
  font-weight: 700;
  margin-right: 8px;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot th.amount {
    font-size: 16px;
    width:11.9%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 13px;
    font-size: 16px;
    box-sizing: border-box;
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  #cart_table tfoot th.amount {
    width: 9.7%;
  }
}
#cart_table tfoot th.stock {
  /* margin-left: 13px; */
  padding: 0;
  color: transparent;
}
@media screen and (min-width: 600px) {
  #cart_table tfoot th.stock {
    width: 20.4%;
  }
}

/*---- customer_form ---*/
.customer_form {
  width: 100%;
}

.customer_form tr {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.46em;
}

.customer_form th {
  display: block;
  width: auto;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  background: none;
}

.customer_form th em {
  color: #f36;
  font-weight: bold;
  display: none;
}

.customer_form td {
  display: block;
  margin-bottom: 0;
  padding: 0;
  border: none;
  color: #666;
  font-size: 1em;
}

.customer_form td label {
  color: black;
}

.customer_form td input[type=text] {
  border: 2px solid #000;
  width: 100%;
  /* max-width: 315px; */
}

.customer_form tr.inp1 td {
  display: inline-block;
  width: 45%;
}

.customer_form .member_name {
  display: none;
}
.customer_form .member_furigana {
  display: none;
}
@media screen and (min-width: 600px) {
  .customer_form .member_name {
    padding-right: 1em;
    display: inline-block;
    font-size: 14px;
  }
  .customer_form .member_furigana {
    display: inline-block;
    font-size: 14px;
  }
}
.customer_form p.password_policy {
  margin-top: 0.4em;
  font-size: 12px;
}

.customer_form input#loginmail,
.customer_form input#mailaddress1,
.customer_form input#mailaddress2 {
  width: 100%;
  /* max-width: 315px; */
}

/* .customer_form input#zipcode {
  margin-right: 0;
} */

.customer_form input#zipcode {
  /* margin: 0.5714285em; */
  padding: 10px;
  max-width: 80px;
}
@media screen and (min-width: 600px) {
  .customer_form input#zipcode {
    max-width: 315px;
  }
}
.customer_form input[type=password] {
  display: block;
  margin-right: 0.5em;
  border: 2px solid #000;
}

.customer_form tr.inp1 input {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .customer_form tr {
  display: block;
  margin-bottom: 1.071428em;
  padding: 0 0 1.071428em;
  border-bottom: 2px solid #efefef;
  font-size: 16px;
}
  .customer_form tr.inp1 input {
    width: 70%;
    margin-right: 0;
    margin-left: 0.5em;
  }
  .customer_form input {
    font-size: 14px;
    padding: 10px 13px;
    border: 1px solid #000;
  }
}
.customer_form input[type=text] {
  margin-bottom: 5px;
  display: block;
}
@media screen and (min-width: 600px) {
  .customer_form input[type=text] {
    margin-right: 0.5em;
    margin-bottom: 0;
  }
}
/* =wc_cart_page.php
-------------------------------------------------------------- */
#wc_cart #cart .upbutton {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 600px) {
  #wc_cart #cart .upbutton {
    justify-content: flex-end;
    margin-bottom: 2.2rem;
  }
}

#wc_cart #cart .upbutton span {
  color: #000;
  font-size: 14px;
  line-height: 1.42em;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  #wc_cart #cart .upbutton span {
    margin-right: 12px;
    font-size: 16px;
  }
  #wc_cart #cart .upbutton span br {
    display: none;
  }
}

#wc_cart .currency_code {
  padding: 1rem 0;
}

#wc_cart .no_cart {
  padding: 3em 0;
  font-weight: bold;
  text-align: center;
}

/*--- PayPal Style ---*/
.ui-dialog {
  width: 95% !important;
  font-size: 1em;
}

.ui-dialog #paypal_dialog {
  padding: 10px;
}

#paypal_dialog #paypal_confirm td {
  text-align: right;
}

#paypal_dialog #paypal_shipping select {
  width: 100%;
}

#paypal_dialog #paypal_point table {
  border: none;
}

#paypal_dialog #paypal_point table th,
#paypal_dialog #paypal_point table td {
  border: 1px solid #e6e6e6;
}

#paypal_dialog #paypal_point tr:last-child td {
  padding: 1.5rem 0 0;
  border: none;
  text-align: center;
}

#paypal_dialog #paypal_use_point {
  width: auto;
  border: 1px solid #45B7D2;
  background-color: #FFFFFF;
  color: #45B7D2;
}

#paypal_dialog #paypal_use_point:hover {
  background-color: #fdffd3;
  color: #e28619;
}

/* =wc_customer_page.php
-------------------------------------------------------------- */
#customer-info h5 {
  margin: 0 0 10px 0;
  padding:0;
  border-bottom: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
}
#customer-info h6 {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  #customer-info h5 {
    margin: 0 0 15px 0;
    font-size: 27px;
  }
  #customer-info h6 {
    font-size: 16px;
  }
}

/* #wc_customer .send input.to_reganddeliveryinfo_button {
  background-color: #45B7D2;
  color: #FFFFFF;
}

#wc_customer .send input.to_reganddeliveryinfo_button:hover {
  background-color: #67CEE6;
} */

#wc_customer .liwpp_area {
  padding: 0.714286em 0 0;
  text-align: center;
}

/* =wc_delivery_page.php
-------------------------------------------------------------- */
#wc_delivery .customer_form dt {
  padding: 0.714286em 0;
  font-weight: bold;
}

#wc_delivery .customer_form dd {
  margin-left: 2rem;
  color: #262626;
  overflow-wrap: anywhere;
}

#wc_delivery .customer_form select {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 280px;
}

#wc_delivery .customer_form dd * {
  max-width: 100%;
}

/*---　credit style　---*/
#wc_delivery #zeus select,
#wc_delivery #remise select,
#wc_delivery #escott select,
#wc_delivery #welcart select {
  width: auto;
  margin-right: 0.25em;
}

/*---　DL Seller　---*/
#dlseller_terms .dlseller_terms {
  height: 200px;
  padding: 0.833334em;
  overflow-y: scroll;
  border: 1px solid #000;
  font-size: 12px;
}

/* =wc_confirm_page.php
-------------------------------------------------------------- */
#wc_confirm div.usccart_navi li.usccart_confirm {
  background: none;
  background-color: #262626;
}

/*---- info-confirm ---*/
#info-confirm .confiem_notice {
  padding-bottom: 5px;
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  #info-confirm .confiem_notice {
    padding-bottom: 5px;
    font-size: 16px;
  }
}

/*---- cart_table ---*/
#wc_confirm #cart_table {
  margin-bottom: 1.4286em;
}

#wc_confirm #cart_table td.unitprice,
#wc_confirm #cart_table td.subtotal {
  text-align: left;
}

/*---- point_table ---*/
#cart #point_table {
  width: 100%;
  margin: 0 auto 2rem !important;
  float: none;
}

#point_table td {
  width: 50%;
  padding: 1rem;
  border: 1px solid #000;
  text-align: center;
}

#point_table td.c-point,
#point_table td.u-point {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  #point_table td.c-point,
  #point_table td.u-point {
    font-size: 13px;
  }
}

#point_table .point-btn {
  padding: 1.5rem 0 0;
  border: none;
  text-align: center;
}

#point_table td span.point {
  padding-right: 0.3125em;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

#point_table td input[type=text] {
  width: 80px;
  margin: 0 1rem;
  border: 1px solid #aaa;
  border-radius: 0;
  text-align: center;
}

#point_table td input.use_point_button {
  color: #000;
  border: 2px solid #000;
  background: #fff;
  border-radius: 50px;
}

#point_table td input.use_point_button:hover {
  background: #000;
  color: #fff;
}

/*---- wcex_coupon ---*/
#cart #coupon_table {
  width: 100% !important;
  margin: 0 auto 2rem;
  float: none;
}

#cart #coupon_table th {
  width: 50%;
  padding: 1rem;
  border: 1px solid #000;
  background-color: #efefef;
  font-weight: bold;
  text-align: center;
}

#cart #coupon_table td {
  width: 50%;
  height: auto !important;
  padding: 1rem;
  border: 1px solid #000;
  text-align: center;
}

#cart #coupon_table tr:first-child td:first-child {
  background-color: #efefef;
  font-weight: bold;
}

#cart #coupon_table tr:last-child td {
  padding: 0.714286em 0 0;
  border: none;
}

#cart #coupon_table td .use_coupon_button {
  margin-right: 5px;
  border: 1px solid #45B7D2;
  background-color: #FFFFFF;
  color: #45B7D2;
}

#cart #coupon_table td .use_coupon_button:hover {
  background-color: #fdffd3;
  color: #e28619;
}

/*---- confirm_table ---*/
#confirm_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

#confirm_table th {
  width: auto;
  padding: 1rem;
  border: 1px solid #000;
  color: #000;
  font-size: 13px;
}

#confirm_table td {
  padding: 1rem;
  border: 1px solid #000;
  font-size: 13px;
}

#confirm_table tr.ttl td {
  /* background-color: #efefef; */
}

#wc_confirm table .action {
  display: none;
}

#confirm_table .ttl h3 {
  color: #000;
  letter-spacing: 0.05em;
}

#wc_confirm .currency_code {
  padding-bottom: 1rem;
}

/*---- send ---*/
.wc_confirm_notes_area {
  margin: 2em 0;
}

/* =wc_completion_page.php
-------------------------------------------------------------- */
#wc_ordercompletion h3 {
  margin: 1.785715em 0;
  text-align: center;
}

#wc_ordercompletion .header_explanation {
  text-align: center;
}

#wc_ordercompletion .send a {
  padding: 10px 20px;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #efefef;
}

#wc_ordercompletion .send a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/*　wc_templates dlseller　*/
#wc_ordercompletion .dllist {
  text-align: center;
}

#wc_ordercompletion .dllist li {
  margin-bottom: 1.4286em;
}

#wc_ordercompletion .dllist li:last-child {
  margin-bottom: 0;
}

#wc_ordercompletion .dllist .thumb {
  margin-bottom: 1.4286em;
  padding: 0.714286em 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

#wc_ordercompletion .dllist .thumb img {
  height: auto;
}

#wc_ordercompletion .dllist table {
  margin: 0 auto 1.4286em;
  border-collapse: collapse;
  border: 1px solid #000;
}

#wc_ordercompletion .dllist th {
  width: 30%;
  padding: 0.714286em;
  border: 1px solid #000;
  background-color: #f0f0f0;
}

#wc_ordercompletion .dllist td {
  padding: 0.714286em;
  border: 1px solid #000;
}

#wc_ordercompletion .item_info_list p {
  text-align: center;
}

#wc_ordercompletion a.redownload_button {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.714286em;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #45B7D2;
  color: #FFFFFF;
  text-decoration: none;
}

#wc_ordercompletion a.redownload_button:hover {
  background-color: #67CEE6;
}

/* =member
-------------------------------------------------------------- */
#main #content.member-page {
  width: 100%;
  float: none;
}

/*---- page-title ---*/
.member_page_title {
  margin: 0 0 1.25em;
  font-size: 18px;
  line-height: 1.25em;
}

/*---- send ---*/
.member-page .send {
  padding-top: 15px;
  text-align: center;
  display: block;
  max-width: 305px;
  margin: 0 auto;
}
.member-page .send input {
  color: #FFFFFF;
  background: #000;
  border: 3px solid #000;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 5px;
  line-height: 1.44em;
  width: 100%;
}
.lostpassword{
  padding-top: 136px;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .lostpassword{
    padding-top: 50px;
  }
}
.member-page .send input:hover {
  background-color: #fff;
  color: #000;
}
.member-page #memberinfo .send input.editmember {
  margin: 0 !important;
  border-radius: 50px;
}
.member-page #memberinfo .send input.deletemember {
  background: #fff;
  color: #000;
  margin-top: 15px;
  border-radius: 50px;
}
.member-page #memberinfo .send input.deletemember:hover {
  opacity: 1 !important;
  background: #000;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .member-page #memberinfo .send input.deletemember {
    margin-top: 0 ;
  }
}
/* =wc_login_page.php
-------------------------------------------------------------- */
.p_shopMemberForm h5 {
  margin: 0 0 10px 0;
  padding:0;
  border-bottom: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
}
.p_shopMemberForm .ttlBox {
  margin-bottom: 30px;
}
.p_shopMemberForm h6 {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm h5 {
    margin: 0 0 15px 0;
    font-size: 27px;
  }
  .p_shopMemberForm h6 {
    font-size: 16px;
  }
  .p_shopMemberForm .ttlBox {
    margin-bottom: 60px;
  }
}
#wc_login .loginbox,
#wc_member .loginbox {
  padding: 0.714286em 3rem;
  text-align: left;
}

#wc_login .loginbox label,
#wc_member .loginbox label {
  line-height: 180%;
}

#wc_login .loginbox input,
#wc_memebr.login .loginbox input {
  transition: 0.3s ease all;
}

#wc_login .loginbox input.loginmail,
#wc_login .loginbox input.loginpass,
#wc_member .loginbox input.loginmail,
#wc_member .loginbox input.loginpass {
  width: 100%;
  margin-bottom: 0.714286em;
  border: 1px solid #000;
}

.loginbox .submit {
  padding: 0.714286em 0;
}

#wc_login .loginbox #member_login,
#wc_member .loginbox #member_login {
  border: none;
  border-radius: 3px;
  background-color: #45B7D2;
  color: #FFFFFF;
}

#wc_login .loginbox #member_login:hover,
#wc_member .loginbox #member_login:hover {
  background-color: #67CEE6;
}

#wc_login .loginbox .new-entry,
#wc_member .loginbox .new-entry {
  margin: 10px 0;
  padding: 20px;
  background-color: #efefef;
}

#wc_login .loginbox .new-entry #nav,
#wc_member .loginbox .new-entry #nav {
  margin-top: 0.833338em;
  text-align: center;
}

#wc_login .loginbox .new-entry #nav a,
#wc_member .loginbox .new-entry #nav a {
  display: inline-block;
  padding: 0.714286em 2rem;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #45B7D2;
  color: #FFFFFF;
}

#wc_login .loginbox .new-entry #nav a:hover,
#wc_member .loginbox .new-entry #nav a:hover {
  background-color: #67CEE6;
  text-decoration: none;
}

#wc_member .loginbox a {
  padding: 0;
  border-radius: 0;
  background: none;
}

#wc_member .loginbox a:hover {
  background: none;
  text-decoration: underline;
}

#wc_login .footer_explanation,
#wc_member .footer_explanation {
  clear: both;
}

#wc_login .liwpp_area,
#wc_member .liwpp_area {
  text-align: center;
}

/* =wc_changepassword_page.php
-------------------------------------------------------------- */
wc_changepassword .whitebox {
  text-align: center;
}

#wc_changepassword .loginbox {
  padding: 0.8333em 2.5em;
  font-size: 0.85714em;
  text-align: left;
}

#wc_changepassword .loginbox label {
  line-height: 180%;
}

#wc_changepassword .loginbox input.loginpass {
  width: 100%;
  margin-bottom: 0.714286em;
  padding: 0.35714em;
  border: 1px solid #000;
}

#wc_changepassword #member_login {
  width: 60%;
  padding: 0.714286em 0;
  transition: 0.3s ease all;
  border: none;
  background-color: #45B7D2;
  color: #FFFFFF;
}

#wc_changepassword #member_login:hover {
  background-color: #67CEE6;
}

#wc_changepassword p.password_policy {
  margin: 0 0 0.8em;
  font-size: 12px;
}

/* =wc_lostpassword_page.php
-------------------------------------------------------------- */
#wc_lostmemberpassword .whitebox {
  text-align: center;
}

#wc_lostmemberpassword .loginbox {
  /* padding: 0.714286em 3rem; */
  text-align: left;
}
#wc_lostmemberpassword .loginbox p#nav {
  text-align: center;
  padding: 30px 0 0;
}

#wc_lostmemberpassword .loginbox label {
  line-height: 180%;
}

#wc_lostmemberpassword input,
#wc_lostmemberpassword a {
  transition: 0.3s ease all;
  border-radius: 0;
}

#wc_lostmemberpassword .loginbox input.loginmail {
  width: 100%;
  margin-bottom: 0.714286em;
}

#wc_lostmemberpassword #member_login {
  margin-bottom: 0.714286em;
  padding: 0.714286em 2rem;
  border: none;
  border-radius: 50px;
  background-color: #000;
  color: #FFFFFF;
  border: 2px solid #000;
  width: 90%;
  max-width: 305px;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  #wc_lostmemberpassword #member_login {
    font-size: 13px;
  }
}
.lostpasswordlogin{
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .lostpasswordlogin{
    font-size: 13px;
  }
}
#wc_lostmemberpassword #member_login:hover {
  background-color: #fff;
  color: #000;
}
.loginbox .submit, #wc_lostmemberpassword #nav a{
  text-align: center;
}
#wc_lostmemberpassword #nav a {
  display: inline-block;
  padding: 0.714286em 2rem;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border: 2px solid #000;
}

#wc_lostmemberpassword #nav a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

#wc_lostmemberpassword .error_message {
  margin: 0 auto 10px;
  text-align: left;
}

/* =wc_member_completion_page.php
-------------------------------------------------------------- */
#wc_newcompletion #memberpages,
#wc_lostcompletion #memberpages,
#wc_changepasscompletion #memberpages {
  text-align: center;
}

#wc_newcompletion #memberpages p a,
#wc_lostcompletion #memberpages p a,
#wc_changepasscompletion #memberpages p a {
  display: inline-block;
  margin: 1.071428em 0 0;
  padding: 0.714286em 2rem;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #efefef;
}

#wc_newcompletion #memberpages p a:hover,
#wc_lostcompletion #memberpages p a:hover,
#wc_changepasscompletion #memberpages p a:hover {
  background-color: #ddd;
  text-decoration: none;
}

#wc_newcompletion .send a,
#wc_lostcompletion .send input,
#wc_lostcompletion .send a,
#wc_changepasscompletion .send a {
  display: inline-block;
  padding: 0.714286em 2rem;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #efefef;
}

#wc_newcompletion #memberpages a:hover,
#wc_lostcompletion #memberpages input:hover,
#wc_lostcompletion #memberpages a:hover,
#wc_changepasscompletion #memberpages a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/* =wc_member_page.php
-------------------------------------------------------------- */
/*---- h3 ---*/
#wc_member h3,
#wc_editmemberform h3 {
  margin: 2rem 0;
  padding: 1rem;
  border-bottom: 1px solid #000;
  color: #000;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}

#wc_member h3 a,
#wc_editmemberform h3 a {
  padding: 0;
  background: none;
}

#memberinfo p.subTtl {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.66em;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  #memberinfo p.subTtl {
    font-size: 16px;
    margin-top: 30px;
  }
}
/*---- table ---*/
#memberinfo table {
  display: block;
  width: 100%;
  margin-bottom: 0.714286em;
  border: none;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  font-size: 16px;
}

/* #memberinfo table tbody,
#memberinfo table tr {
  display: block;
} */
#memberinfo table.sp{
  display: none;
}

#memberinfo th {
  /* display: block; */
  display: table-cell;
  border: 1px solid #000;
  width: auto;
  padding: 13px 5px;
  /* border: none; */
  /* border-bottom: 1px solid #000; */
  width: 18.5%;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #efefef;
}
#memberinfo td {
  /* display: block; */
  display: table-cell;
  border: 1px solid #000;
  padding: 13px 20px;
  border: none;
  border-bottom: 1px solid #000;
  width: 31.4%;
  font-size: 14px;

}


@media screen and (max-width: 600px) {
  #memberinfo table.pc{
    display: none;
  }
  #memberinfo table.sp{
    display: block;
  /* display: table-row-group; */

    width: 100%;
  border-collapse: collapse;
      width: 100%;
    border: none;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    font-size: 16px;

  }
  #memberinfo table.sp tbody{
    display: block;
    width: 100%;

  }
  #memberinfo table.sp th {
    padding: 10px;
    width: 37%;
    font-size: 13px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    width: 30%;
    width: 10%;

  }
  #memberinfo table.sp td {
    padding: 10px;
    width: 63%;
    font-size: 13px;
    width: 70%;
    width: 33%;

  }
}
#memberinfo .space {
  display: none;
}

#memberinfo .button {
  text-align: center;
}

#memberinfo td img {
  max-width: 100%;
  height: auto;
}

/*---- member_submenu ---*/
.member_submenu {
  margin: 0;
  font-size: 16px;
}

.member_submenu li {
  margin-bottom: 0.714286em;
  list-style: none;
  text-align: center;
}

.member_submenu a {
  display: inline-block;
  width: 100%;
  padding: 0.714286em 2rem;
  transition: 0.3s ease all;
  border-radius: 3px;
  background-color: #efefef;
  color: #262626;
}

.member_submenu a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/*---- history-area ---*/
#memberinfo .history-area table .aleft {
  text-align: left;
}

#memberinfo .history-area table .rightnum {
  text-align: right;
}

/*---- .retail + #history_head  ---*/
#memberinfo .retail tbody,
#memberinfo #history_head tbody {
  display: table-row-group;
}

#memberinfo .retail tr,
#memberinfo #history_head tr {
  display: table-row;
}

#memberinfo #history_head th,
#memberinfo .retail th {
  display: table-cell;
  padding: 5px 3px;
  border: 1px solid #000;
  background-color: #efefef;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: center;
  vertical-align: middle;
}

#memberinfo #history_head td,
#memberinfo .retail td {
  display: table-cell;
  padding: 5px;
  border: 1px solid #000;
  font-size: 11px;
  line-height: 1.2em;
  vertical-align: middle;
}

/*---- history_head ---*/
#memberinfo #history_head {
  display: table;
  width: 100%;
  margin-bottom: 0.8333em;
  border-collapse: collapse;
}

/*---- customer_form ---*/
#memberinfo .customer_form {
  margin-bottom: 0;
  border: none;
}
#memberinfo .customer_form tbody{
  display: block;
}
@media screen and (min-width: 600px) {
  #memberinfo .customer_form tbody{
    display: table-row-group;
  }
}

#memberinfo .customer_form th {
  width: auto;
  padding: 0;
  padding-bottom: 8px;
  border: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
  font-size: 13px;
}

#memberinfo .customer_form td {
  display: block;
  padding: 0;
  border: none;
  color: #000;
  font-size: 14px;
  width: 67.5%;
  width: 100%;
  color: #c1c1c1;
  font-size: 11px;
}
#memberinfo .customer_form select {
  border: 2px solid #000 ;
  font-size: 14px;
  width: 100%;
  /* max-width: 315px; */
  box-sizing: border-box;
}
.customer_form input[type=password]{
  width: 100%;
}

#memberinfo .customer_form tr.inp1  {
  width: 100%;
  
}
#memberinfo .customer_form tr.inp1 td {
  display: inline-block;
  width: 48%;
  
}
#memberinfo .customer_form tr.inp1 td:last-child {
  margin-left: auto;
  margin-left: 10px;
}

/*---- send ---*/
/* .member-page #memberinfo .send input.top,
.member-page #memberinfo .send input.deletemember {
  transition: 0.3s ease all;
  background-color: #efefef;
  color: #262626;
}

.member-page #memberinfo .send input.deletemember {
  margin-top: 0.714286em;
}

.member-page #memberinfo .send input.top:hover,
.member-page #memberinfo .send input.deletemember:hover {
  background-color: #ddd;
} */

/*-------------------------------------------
　WCEX DL Seller　*/
#memberinfo #history_head td.retail a {
  padding: 0;
  background: none;
  color: #0f9abb;
}

#memberinfo #history_head td.retail a:hover {
  text-decoration: underline;
}

/*---- retail ---*/
#memberinfo .retail {
  display: table;
  width: 100%;
  margin-bottom: 1.666666em;
  border-collapse: collapse;
}

#memberinfo .retail td.cartrownum,
#memberinfo .retail td.thumbnail {
  text-align: center;
}

#memberinfo .retail td.thumbnail {
  width: 12rem;
}

#memberinfo .retail .quantity {
  white-space: nowrap;
}

#memberinfo table.retail .redownload_link {
  margin: 0.714286em 0;
  text-align: center;
}

#memberinfo table.retail .redownload_link a {
  padding: 0.714286em;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #45B7D2;
  color: #FFFFFF;
  text-decoration: none;
}

#memberinfo table.retail .redownload_link a:hover {
  background-color: #67CEE6;
}

/* =ZEUS
-------------------------------------------------------------- */
/*--- wc_member_page.php ---*/
.gotoedit,
.gotoedit {
  margin: 10px 0;
  text-align: center;
}

.gotoedit a,
.gotoedit a {
  display: inline-block;
  padding: 0.714286em 2rem;
  transition: 0.3s ease all;
  border: none;
  border-radius: 3px;
  background-color: #efefef;
  color: #262626;
}

.gotoedit a:hover,
.gotoedit a:hover {
  background-color: #ddd;
  text-decoration: none;
}

/*---　#wc_member_update_settlement　---*/
#wc_member_update_settlement h3 {
  margin: 1.53846em 0;
  padding: 0.384615em 0 0.384615em 0.23076em;
  border-bottom: 1px solid #000;
  color: #000;
  letter-spacing: 0.05em;
}

#wc_member_update_settlement .send {
  text-align: center;
}

#wc_member_update_settlement .send input:last-child {
  margin-top: 10px;
}

#wc_member_update_settlement td select {
  width: auto;
}

/* =wc_new_member_page.php + wc_customer.php
-------------------------------------------------------------- */
.agree_member_area {
  width: 90%;
  margin: 2rem auto 0;
}

.agree_member_area .at_exp_text {
  margin-bottom: 0.714286em;
}

.agree_member_area textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 0.41666em;
  padding: 0.769231em;
  border: 1px solid #000;
  color: #565656;
  font-size: 13px;
  line-height: 180%;
  resize: none;
}

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

/*---　Delivery Address in Cart　---*/
.delivery-address-book #delivery_address_book {
  display: block;
  margin-bottom: 15px;
}

table#delivery_table tr td.delivery-address-book a.new-delivery-address-button {
  float: none;
}

/* =wc_member_mda_page.php
-------------------------------------------------------------- */
.memb-delivery-address #new_destination {
  width: 100%;
  margin: 10px 0 0;
}

.memb-delivery-address .return_navi {
  position: initial;
  width: 100%;
  margin: 10px 0 0 0;
}

.memb-delivery-address .return_navi a {
  width: 100%;
  text-align: center;
}

.memb-delivery-address .return_navi a:hover {
  color: #FFFFFF;
}

.memb-delivery-address .destination_label {
  display: block;
}

.memb-delivery-address #destination {
  width: 100%;
  margin: 0;
}

.memb-delivery-address .msa_field {
  padding: 1.071428em 0;
  border-bottom: #efefef 2px solid;
  background: none;
}

.memb-delivery-address .msa_field label {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
}

.memb-delivery-address .msa_field textarea,
.memb-delivery-address .msa_field input[type=text] {
  width: 100%;
  margin: 0;
}

.memb-delivery-address .msa_field .member_name {
  padding-left: 1em;
}

.memb-delivery-address .msa_field #msa_name,
.memb-delivery-address .msa_field #msa_name2,
.memb-delivery-address .msa_field #msa_furigana,
.memb-delivery-address .msa_field #msa_furigana2 {
  width: calc(50% - 3.5em);
  margin: 0 0.5em;
  vertical-align: middle;
}

.memb-delivery-address .msa_field #msa_name2,
.memb-delivery-address .msa_field #msa_furigana2 {
  margin-right: 0;
}

.memb-delivery-address #zipcode {
  width: 8em;
  margin-right: 1em;
}

.memb-delivery-address .msa_field .search-zipcode {
  margin: 0;
}

.memb-delivery-address #msa_address1,
.memb-delivery-address #msa_address2,
.memb-delivery-address #msa_note {
  width: 100%;
}

.memb-delivery-address #msa_tel,
.memb-delivery-address #msa_fax {
  width: 43%;
}

.memb-delivery-address .msa_field select {
  margin: 0;
}

.memb-delivery-address .msa_message {
  margin-left: 1em;
}

.memb-delivery-address #name_message,
.memb-delivery-address #zip_message,
.memb-delivery-address #tel_message {
  display: block;
  margin-left: 0;
}

.memb-delivery-address #address1_message,
.memb-delivery-address #address2_message {
  margin-left: 0;
}

/**
 * 16.1 Mobile Large 620px
 */
@media screen and (min-width: 600px) {
  /* =item-single.php
  -------------------------------------------------------------- */
  .item_page_title {
    margin: 0 0 2.22222em;
    font-size: 18px;
    line-height: 1.285714em;
  }
  #itempage #img-box {
    width: 40%;
    margin-bottom: 0;
    float: left;
  }
  #img-box .itemsubimg a {
    width: 30.333%;
  }
  .detail-box {
    width: 55%;
    float: right;
  }
  #itempage .item-info {
    clear: both;
  }
  .item-info .skuform {
    margin: 0 0 2.85714em;
  }
  .item-info .skubutton {
    padding: 1.071428em 3rem;
  }
  .item-info .field {
    text-align: right;
  }
  .item-info .zaikostatus,
  .item-info .field_price {
    margin-bottom: 1rem;
    float: none;
  }
  /* ---- .tax_inc_block ---- */
  .item-info .tax_inc_block {
    margin: -8px 0 10px;
    clear: both;
    text-align: right;
  }
  .assistance_item li {
    width: 22%;
    margin-right: 4%;
    padding: 2rem 0 0;
  }
  .assistance_item li:nth-child(even) {
    margin-right: 4%;
  }
  .assistance_item li:nth-child(4n) {
    margin-right: 0;
  }
  /* =cart
  -------------------------------------------------------------- */
  /* .cart_page_title {
    margin-bottom: 1.8rem;
    font-size: 20px;
    line-height: 1;
  } */
  /* =wc_cart_page.php
  -------------------------------------------------------------- */
  /* =wc_confirm_page.php
  -------------------------------------------------------------- */
  /* =member
  -------------------------------------------------------------- */
  /* =wc_member_page.php
  -------------------------------------------------------------- */
  /*---　Delivery Address in Cart　---*/
}
@media screen and (min-width: 38.75em) and (min-width: 600px) {
  .cart_page_title {
    margin-bottom: 60px;
    font-size: 27px;
  }
}
@media screen and (min-width: 600px) {
  #cart_table .thumbnail {
    display: table-cell;
  }
  .ui-dialog {
    width: 400px !important;
  }
  #wc_confirm .send input#back_button {
    margin-bottom: 0;
  }
  #wc_login .error_message,
  #wc_member .error_message,
  #wc_changepassword .loginbox,
  #wc_changepassword .error_message,
  /* #wc_lostmemberpassword .loginbox, */
  #wc_lostmemberpassword .error_message {
    width: 50%;
  }
  #wc_login .loginbox,
  #wc_changepassword .loginbox,
  #wc_lostmemberpassword .loginbox {
    margin: 0 auto;
    padding: 0.714286em 2.14285em;
    font-size: 1em;
  }
  .loginbox .submit,
  #wc_lostmemberpassword #nav a {
    font-size: 1em;
  }
  #wc_newcompletion #memberpages p a,
  #wc_lostcompletion #memberpages p a,
  #wc_changepasscompletion #memberpages p a {
    margin: 1.5rem 0 0;
    padding: 0.714286em 2rem;
    font-size: 1em;
  }
  .member_submenu a {
    width: auto;
  }
  .member-page .send {
    padding-top: 60px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 640px;
    margin: 0 auto;
  }
  .member-page .send input {
    /* background-color: #45B7D2; */
    color: #FFFFFF;
    background: #000;
    border: 3px solid #000;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    padding: 17px 5px;
    line-height: 1.44em;
    width: 46.8%;
  }
  
  .member-page .send input:hover {
    background-color: #fff;
    color: #000;
  }
  #memberinfo table {
    display: table;
    font-size: 16px;
    font-weight: normal;
  }
  #memberinfo table tbody {
    display: table-row-group;
  }
  #memberinfo table tr {
    display: table-row;
  }

  #memberinfo .space {
    display: table-cell;
  }
  #memberinfo #history_head {
    font-size: 1em;
  }
  #memberinfo #history_head th {
    font-size: 16px;
    white-space: nowrap;
  }
  #memberinfo #history_head td,
  #memberinfo .retail th,
  #memberinfo .retail td {
    padding: 0.5rem;
    font-size: 16px;
  }
  #memberinfo .customer_form th {
    display: table-cell;
    width: 30%;
    padding: 10px 15px;
    border: 1px solid #000;
    vertical-align: middle;
    width: 32.5%;
    font-size: 14px;
    background: #efefef;
  }
  #memberinfo .customer_form td {
    display: table-cell;
    padding: 10px 15px;
    border: 1px solid #000;
    width: 67.5%;
    color: #000;
    font-size: 14px;
  }
  #memberinfo .customer_form tr.inp1 td {
    display: table-cell;
    width: 33.7%;
  }
  .delivery-address-book #delivery_address_book {
    display: inline-block;
    margin: 0 1em 0 0;
  }
  table#delivery_table tr td.delivery-address-book a.new-delivery-address-button {
    float: right;
  }
}
/**
 * 16.2 Tablet Small 740px
 */
@media screen and (min-width: 600px) {
  /* =item-single.php
  -------------------------------------------------------------- */
  .item-info .item-option dt,
  .item-info .itemGpExp dt {
    display: inline-block;
    width: 25%;
    margin-bottom: 0.714286em;
    vertical-align: top;
  }
  .item-info .item-option dd,
  .item-info .itemGpExp dd {
    display: inline-block;
    width: 65%;
    margin-bottom: 0.714286em;
    padding-left: 3%;
    border-left: 1px solid #000;
  }
  .item-info .field {
    padding-bottom: 0;
  }
  /* =cart
  -------------------------------------------------------------- */
  /*--- cart_table ---*/
  #cart_table .stock {
    white-space: nowrap;
  }
  /*---- customer_form ---*/
  .customer_form {
    margin-bottom: 1.071428em;
  }
  .customer_form tr {
    display: table-row;
    margin-bottom: 0;
    padding: 0;
    border: none;
    font-size: 16px;

  }
  .customer_form th {
    display: table-cell;
    width: 25%;
    padding: 1rem 1.071428em;
    border: 1px solid #000;
    background-color: #f6f6f6;
    vertical-align: middle;
  }
  .customer_form td {
    display: table-cell;
    padding: 1rem 1.071428em;
    border: 1px solid #000;
    color: #000;
  }
  .customer_form tr.inp1 td {
    display: table-cell;
    width: auto;
    margin-bottom: 0;
  }
  .customer_form input[type=password] {
    display: block;
    max-width: 315px;
    width: 70%;
    border: 1px solid #000 ;

  }
  #memberinfo .customer_form select {
    border: 1px solid #000 ;
    font-size: 14px;
    width: 70%;
    max-width: 315px;
    box-sizing: border-box;
  }
  .customer_form input#loginmail,
.customer_form input#mailaddress1,
.customer_form input#mailaddress2 {
  width: 70%;
  max-width: 315px;
}
.customer_form td input[type=text] {
  width: 100%;
  width: 43.7%;
  width: 70%;
  max-width: 315px;
  border: 1px solid #000;
}
  /* =wc_confirm_page.php
  -------------------------------------------------------------- */
  /*---- confirm_table ---*/
  #confirm_table th {
    display: table-cell;
    width: 30%;
    padding: 1rem 1.071428em;
    border: 1px solid #000;
    /* background-color: #efefef; */
    vertical-align: middle;
  }
  #confirm_table td {
    display: table-cell;
    padding: 1rem 1.071428em;
    /* border: 1px solid #000; */
  }
  #confirm_table .ttl h3 {
    margin: 0;
    padding: 0;
    background: none;
  }
  /* =wc_new_member_page.php + wc_customer.php
  -------------------------------------------------------------- */
  .agree_member_area {
    width: 70%;
    margin: 2rem auto 0;
  }
  /* =wc_member_mda_page.php
  -------------------------------------------------------------- */
  .memb-delivery-address .msa_total {
    display: flex;
    align-items: center;
  }
  .memb-delivery-address #new_destination {
    width: auto;
    margin: 0 0 0 1em;
  }
  .memb-delivery-address .return_navi {
    position: absolute;
    width: auto;
    margin: 0;
  }
  .memb-delivery-address #destination {
    width: auto;
    margin: 0 0 0 1em;
  }
  .memb-delivery-address .msa_operation {
    display: flex;
    align-items: center;
  }
  .memb-delivery-address .msa_field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: none;
  }
  .memb-delivery-address .msa_field label {
    width: 25%;
    margin: 0;
  }
  .memb-delivery-address .msa_field textarea,
  .memb-delivery-address .msa_field input[type=text],
  .memb-delivery-address #msa_address1,
  .memb-delivery-address #msa_address2,
  .memb-delivery-address #msa_note {
    width: 75%;
  }
  .memb-delivery-address .msa_field #msa_name,
  .memb-delivery-address .msa_field #msa_name2,
  .memb-delivery-address .msa_field #msa_furigana,
  .memb-delivery-address .msa_field #msa_furigana2 {
    width: calc(37.5% - 5em);
  }
  .memb-delivery-address #msa_tel,
  .memb-delivery-address #msa_fax {
    width: 30%;
  }
  .memb-delivery-address #name_message,
  .memb-delivery-address #address1_message,
  .memb-delivery-address #address2_message {
    display: block;
    margin-left: 25%;
  }
  .memb-delivery-address #zip_message,
  .memb-delivery-address #tel_message {
    display: inline;
    margin-left: 1em;
  }
}
@media screen and (min-width: 769px) {

  .customer_form input[type=password] {
    width: 70%;
    max-width: 315px;
  }
  /* =wc_confirm_page.php
  -------------------------------------------------------------- */
  /*---- confirm_table ---*/
  #confirm_table th {
    display: table-cell;
    width: 30%;
    padding: 1rem 1.071428em;
    border: 1px solid #000;
    /* background-color: #efefef; */
    vertical-align: middle;
    font-size: 16px;
  }
  #confirm_table td {
    display: table-cell;
    padding: 1rem 1.071428em;
    border: 1px solid #000;
    font-size: 16px;
  }
  #confirm_table .ttl h3 {
    margin: 0;
    padding: 0;
    background: none;
  }
  /* =wc_new_member_page.php + wc_customer.php
  -------------------------------------------------------------- */
  .agree_member_area {
    width: 70%;
    margin: 2rem auto 0;
  }
  /* =wc_member_mda_page.php
  -------------------------------------------------------------- */
  .memb-delivery-address .msa_total {
    display: flex;
    align-items: center;
  }
  .memb-delivery-address #new_destination {
    width: auto;
    margin: 0 0 0 1em;
  }
  .memb-delivery-address .return_navi {
    position: absolute;
    width: auto;
    margin: 0;
  }
  .memb-delivery-address #destination {
    width: auto;
    margin: 0 0 0 1em;
  }
  .memb-delivery-address .msa_operation {
    display: flex;
    align-items: center;
  }
  .memb-delivery-address .msa_field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: none;
  }
  .memb-delivery-address .msa_field label {
    width: 25%;
    margin: 0;
  }
  .memb-delivery-address .msa_field textarea,
  .memb-delivery-address .msa_field input[type=text],
  .memb-delivery-address #msa_address1,
  .memb-delivery-address #msa_address2,
  .memb-delivery-address #msa_note {
    width: 75%;
  }
  .memb-delivery-address .msa_field #msa_name,
  .memb-delivery-address .msa_field #msa_name2,
  .memb-delivery-address .msa_field #msa_furigana,
  .memb-delivery-address .msa_field #msa_furigana2 {
    width: calc(37.5% - 5em);
  }
  .memb-delivery-address #msa_tel,
  .memb-delivery-address #msa_fax {
    width: 30%;
  }
  .memb-delivery-address #name_message,
  .memb-delivery-address #address1_message,
  .memb-delivery-address #address2_message {
    display: block;
    margin-left: 25%;
  }
  .memb-delivery-address #zip_message,
  .memb-delivery-address #tel_message {
    display: inline;
    margin-left: 1em;
  }
}
@media screen and (min-width:1000px) {
  .customer_form input[type=password] {
    display: inline-block;
    width: 70%;
  }
  .customer_form td input[type=text]{
    display: inline-block;
    width: 70%;
  }

}
/**
 * 16.3 Tablet Large 880px
 */
@media screen and (min-width: 55em) {
  /* =wc_login_page.php
  -------------------------------------------------------------- */
  #wc_login .loginbox {
    width: 50%;
  }
  /* =wc_delivery_page.php
  -------------------------------------------------------------- */
  #wc_delivery .customer_form select {
    max-width: 500px;
  }
}
/**
 * 16.4 Desktop Small 1000px
 */
@media screen and (min-width: 62.5em) {
  /* =item-single.php
  -------------------------------------------------------------- */
  /*---- imgblock ---*/
  #itempage #img-box {
    width: 300px;
    margin-bottom: 3rem;
  }
  #itempage .item-description {
    margin-bottom: 3rem;
  }
  /*---- item-option ---*/
  .item-info .item-option select[multiple] {
    width: 100%;
  }
  /*---- assistance_item ---*/
  .assistance_item h3 {
    margin: 3rem 0 0;
  }
  /* =member
  -------------------------------------------------------------- */
  #memberinfo h3 {
    margin: 3rem 0 2rem;
    padding: 0;
    background: none;
    font-size: 16px;
  }
  #memberinfo th {
    padding: 0.714286em;
  }
  #memberinfo td {
    padding: 1rem 1.071428em;
  }
  /*---- history-area ---*/
  #memberinfo .history-area {
    max-height: 500px;
    margin-bottom: 2.85714em;
    padding: 2rem 2rem 0 0;
    overflow-y: scroll;
    /* border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; */
  }
  /*--- wc_login  ---*/
  #wc_login .loginbox .new-entry #nav a,
  #wc_member .loginbox .new-entry #nav a,
  #wc_lostmemberpassword #member_login,
  #wc_lostmemberpassword #nav a,
  #wc_newcompletion #memberpages p a,
  #wc_lostcompletion #memberpages p a,
  #wc_changepasscompletion #memberpages p a,
  #wc_newcompletion .send a,
  #wc_lostcompletion .send input,
  #wc_lostcompletion .send a,
  #wc_changepasscompletion .send a {
    padding: 1.071428em 2.14286em;
  }

}
#wc_lostmemberpassword #nav a{
  width: 90%;
  max-width: 305px;
}

input::-webkit-inner-spin-button{
  display: none !important;
}
.p_shopMember ,
.p_userGuide ,
.p_shopCart ,
.p_form {
  /* padding-top: 10.4rem; */
  padding-top: 50px !important;
}
/* .p_shopMember .ttlBox{
  margin-bottom: 0;
} */
@media screen and (min-width: 600px) {
  .p_shopCart ,
  .p_shopMember ,
  .p_userGuide ,
  .p_form {
    /* padding-top: 16.8rem; */
    padding-top: 136px !important;
  }
}
.p_shopCart .l_container ,
.p_shopMember .l_container ,
.p_userGuide .l_container ,
.p_form .l_container {
  margin-top: 30px !important;
}
.p_userGuide .l_container{
  margin-bottom: 0 !important;
}
@media screen and (min-width: 600px) {
  .p_shopCart .l_container ,
  .p_shopMember .l_container ,
  .p_userGuide .l_container ,
  .p_form .l_container {
    margin-top: 100px !important;
  }
}

.p_shopCart .c_subpageHeader {
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 600px) {
  .p_shopCart .c_subpageHeader {
    margin-bottom: 1.3rem;
  }
}
.p_shopCartForm {
  margin-top: 2.1rem;
}
@media screen and (min-width: 600px) {
  .p_shopCartForm {
    margin-top: 2.9rem;
  }
}
.p_shopCartForm input.p_shopCartForm_button {
  height: auto;
  /* padding: 0 2.2rem; */
  padding: 2px 22px;
  border-radius: 0;
  background-color: #FDD700;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .p_shopCartForm input.p_shopCartForm_button {
    height: auto;
    /* padding: 0 2.2rem; */
    padding: 8px 30px;
    border-radius: 0;
    background-color: #FDD700;
    color: #000;
    font-size: 16px;
    font-weight: 700;
  }
}

.usces_filter_history label {
  font-size: 12px;
}
select#usces_purdate {
  font-size: 12px;
  border: 1px solid #000;
}
.usces_filter_history .usce_period span{
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  select#usces_purdate {
    font-size: 16px;
  }
  .usces_filter_history .usce_period span{
    font-size: 16px;
  }
}
.currency_code {
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  .currency_code {
    font-size: 16px;
  }
}
.p_shopMember {
  /* padding-top: 10.4rem; */
  padding-top: 0;
}
@media screen and (min-width: 600px) {
  .p_shopMember {
    /* padding-top: 16.8rem; */
    padding-top: 0
  }
}
.p_shopMember .c_subpageHeader {
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 600px) {
  .p_shopMember .l_container {
    margin-top: 4.7rem;
  }
}
/* @media screen and (min-width: 600px) {
  .p_shopMemberColumn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2.8rem;
         column-gap: 2.8rem;
  }
} */
.p_shopMemberForm {
  margin-bottom: 30px;
  padding: 0 0 30px;
  background-color: #FBFBF9;
  border-radius: 0;
  border-bottom: 2px dashed #000;
}
.p_shopMemberForm:last-child {
  border: none;
  padding-bottom: 0;
  padding-top: 0px;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm {
    margin-bottom: 0;
    padding: 0 0 6.3rem;
  }
  .p_shopMemberForm:last-child {
    padding-top: 60px;
  }
}
/* @media screen and (min-width: 600px) {
  .p_shopMemberForm:nth-of-type(1) {
    width: 55.2rem;
  }
} */
/* @media screen and (min-width: 600px) {
  .p_shopMemberForm:nth-of-type(2) {
    width: 50.8rem;
  }
} */
@media screen and (min-width: 600px) {
  .p_shopMemberForm .e_heading-m .en {
    font-size: 4.5rem;
  }
}
.p_shopMemberForm .e_heading-m .jp {
  font-size: 1.7rem;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm .e_heading-m .jp {
    font-weight: 400;
  }
}
.p_shopMemberForm_text {
  margin-top: 3rem;
  margin-bottom: 2.8rem;
  border-radius: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.78em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_text {
    margin-bottom: 2.3rem;
  }
}
.p_shopMemberForm_text .error_message {
  font-size: 1rem;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_text .error_message {
    font-size: 1.2rem;
  }
}
.p_shopMemberForm_input {
  width: 26rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input {
    width: 41rem;
    width: 100%;
  }
}
.p_shopMemberForm_input:first-of-type {
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input:first-of-type {
    margin-bottom: 0.8rem;
  }
}
/* .p_shopMemberForm_input label {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
  }
}
.p_shopMemberForm_input label input {
  width: 100%;
  margin-top: 0.6rem;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input label input {
    margin-top: 0;
    width: 28.3rem;
  }
} */
.p_shopMemberForm_input label {
  /* display: flex;
  align-items: center; */
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input label {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    font-size: 16px;
  }
}
.p_shopMemberForm_input label input {
  width: 100%;
  height: 50px;
  padding: 0 1.9rem;
  border: solid 2px #000;
  font-size: 1.4rem;
  margin-top: 0;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: solid 2px #000;
  /* font-size: 1.4rem; */
  font-size: 13px;
}
/* @media screen and (min-width: 600px) {
  .p_shopMemberForm_input label input {
    width: 28.3rem;
  }
} */
.p_shopMemberForm_input._checkbox {
  margin-top: 1.7rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm_input._checkbox {
    margin-bottom: 3rem;
  }
}
.p_shopMemberForm_input._checkbox label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p_shopMemberForm_input._checkbox label input {
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0;
  margin-right: 1.4rem;
  border-radius: 0;
}
.p_shopMemberForm_input._checkbox label span {
  color: #727272;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.p_shopMemberForm .submit {
  text-align: center;
}
.p_shopMemberForm .submit input {
  display: inline-block;
  width: 100%;
  height:auto !important;
  margin: 0 auto;
  padding: 0;
  border-radius: 100vh;
  background-color: #000;
  color: #FFFFFF;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.44em;
  padding: 15px 5px;
  max-width: 300px;
  border: 3px solid #000;
}
@media screen and (min-width: 600px) {
  .p_shopMemberForm .submit input {
    width: 23rem;
    height: 4.5rem;
    font-size: 18px;
    width: 100%;
    height:auto !important;
    margin: 0 auto;
    padding: 0;
    border-radius: 100vh;
    background-color: #000;
    color: #FFFFFF;
    margin-top: 60px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44em;
    padding: 17px 5px;
    max-width: 300px;
    border: 3px solid #000;
  }
}
.p_shopMemberForm .submit input:hover {
  opacity: 1;
  background-color: #fff;
  color: #000;
}
.p_shopMemberForm .e_button {
  width: 26rem;
  height: 4.8rem;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */






html{
  font-size: 100%;
}

body{
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875em;
  background: #FBFBF9;
  font-weight: 500;
  text-align: justify;
}
a{
  text-decoration: none ;
  color: #000;
  transition: 0.5s;
}
a:hover{
  opacity: 0.7;
  transition: 0.5s;
  text-decoration: none;
}
figure{
  line-height: 1;
}
img{
  max-width: 100%;
}
li{
  list-style: none;
  text-align: justify;
}
span.en{
  font-family: "Josefin Sans", sans-serif;
  color: #000;
  line-height: 1;
  font-weight: 700;
}
.ttlBox{
  margin-bottom: 60px;
  display: inline-block;
}
.ttlBox p {
  margin-bottom: 0px !important;
  line-height: 1;
}
.ttlBox p span.en{
  font-size:70px ;
}
.ttlBox h2{
  font-size:14px ;
  background: url(./images/ico_circle_yellow.svg) left center no-repeat;
  background-size: 10px auto;
  padding-left: 20px;
}
.btn{
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
}
.btn a{
  border-radius: 50px;
  display: inline-block;
  padding: 15px 0;
  color: #fff;
  border: 1px solid #000;
  background: #000 url(./images/ico_right_white.svg) 93% center no-repeat;
  background-size: 14px auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66em;
  width: 100%;
  text-align: center;
}
.btn a:hover{
  color: #000;
  border: 1px solid #FDD700;
  background: #FDD700 url(./images/ico_right_black.svg) 93% center no-repeat;
  background-size: 14px auto;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .ttlBox{
    margin-bottom: 50px;
  }
  .ttlBox p span.en{
    font-size:60px ;
  }
  .ttlBox h2{
    font-size:12px ;
    background: url(./images/ico_circle_yellow.svg) left center no-repeat;
    background-size: 8px auto;
    padding-left: 13px;
  }
}
@media screen and (max-width: 600px) {
  p{
    font-size: 13px;
    text-align: justify;
    line-height: 2em;
  }
  .ttlBox{
    margin-bottom: 40px;
  }
  .ttlBox p span.en{
    font-size:35px ;
    margin-bottom: 10px;
  }
  .ttlBox h2{
    font-size:12px ;
    background: url(./images/ico_circle_yellow.svg) left center no-repeat;
    background-size: 8px auto;
    padding-left: 13px;
  }
  .btn{
    max-width: 305px;
  }
  .btn a{
    padding: 13px 0;
    background: #000 url(./images/ico_right_white.svg) 93% center no-repeat;
    background-size: 14px auto;
    font-size: 16px;
  }
}
br.tb{
  display: none;
}
br.sp{
  display: none;
}
br.tbonly{
  display: none;
}
@media screen and (max-width: 768px) {
  br.tb{
    display: block;
  }
  br.tbonly{
    display: block;
  }
}
@media screen and (max-width: 600px) {
  br.pc{
    display: none;
  }
  br.tbonly{
    display: none;
  }
  br.sp{
    display: block;
  }
}
/* header */
.header{
  position: fixed;
  top: 0;
  padding: 50px 43px;
  box-sizing: border-box;
  width: 100%;
  z-index: 9999;
  margin-bottom: 0 !important;
}
.header.change-color {
  background-color: #fff; 
  transition: 0.3s;
  padding: 20px 43px;
}
.navFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.logo{
  width: 212px;
}
.logo a h1{
  font-size: 30px;
}
.logo a:hover h1 span{
  color:#FDD700 ;
  opacity: 1;
}
.nav{
  width: 600px;
}
.nav ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 45px;
}
.nav ul li a{
  display: inline-block;
  font-size: 16px;
  text-align: center;
}
.switch_text {
  display: inline-block;
  position: relative;
  color: #000;
  transition: 0.5s;
  font-family: "Josefin Sans", sans-serif;
  color: #000;
  line-height: 1;
  font-weight: 700;
}
.switch_text::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: transparent;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  transition: 0.5s;
  content: attr(data-hover-text);
}
.switch_text:hover {
  color: transparent;
}
.switch_text:hover::before {
  color: #000;
}
.header .btnFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 258px;
  align-items: center;
}
.header .btnFlex .search-box{
  width: 148px;
  margin-right: 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  /* background: url(./images/ico_search_black.svg) right center no-repeat;
  background-size: 13px auto; */
}
.header .btnFlex .search-box div.s-box {
	display: block;
	position: relative;
	width: 100%;
	/* float: right; */
	/* border: 1px solid #000; */
	/* text-align: center; */
}

.header .btnFlex .search-box input[type="text"] {
	width: 100%;
	padding-right: 2em;
	border: none;
	outline: none;
  background: transparent;
}
.header .btnFlex .search-box .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	/* padding: .3124995em; */
  /* margin-right: 40px; */
  padding: 10px 14px 5px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
  background: url(./images/ico_search_black.svg) right center no-repeat;
  background-size: 13px auto;
}
::placeholder {
  color: #c1c1c1 !important;
}
/* .header .btnFlex .searchBtn a{
  color: #c1c1c1;
} */
.header .btnFlex .mypageBtn{
  width: 18px;
  margin-right: 20px;
}
.header .btnFlex .mypageBtn a{
  text-align: center;
  display:inline-block;
  width: 100%;
}
.header .btnFlex .mypageBtn a img{
  width: 100%;
  vertical-align: middle;
}
.header .btnFlex .cartBtn{
  width: 23px;
  position: relative;
}
.header .btnFlex .cartBtn .count{
  position: absolute;
  width: 12px;
  height: 12px;
  background: #E25B33;
  color: #fff;
  border-radius: 50px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  right: -6px;
  top: -2px;
}
.header .btnFlex .cartBtn a{
  text-align: center;
  display:inline-block;
  width: 100%;
}
.header .btnFlex .cartBtn a img{
  width: 100%;
  vertical-align: middle;
}
.menu{
  position:fixed;
  z-index: 999;
  top:0;
  right: -120%;
  width:100vw;
  height: 100vh;
  background:#000;
  transition: all 0.6s;
}
.menu .logo {
  padding: 50px 43px;
}
.menu .logo a h1 span.en{
  font-size: 30px;
  color: #fff;
}
.menu .menuBox{
  width: 81%;
  margin: 0 auto;
  padding-top: 50px;
}

.menuBox .menuSearch-box{
  margin-bottom: 35px;
  border-bottom: 1px solid #fff;
  background: #000;
}
.menuBox .menuSearch-box div.s-box {
	display: block;
	position: relative;
	width: 100%;
}

.menuBox .menuSearch-box input[type="text"] {
	width: 100%;
	border: none;
	outline: none;
  color: #fff;
  background: #000 !important;
  font-size: 16px;
  padding: 0 0 10px 5px;
}
.menuBox .menuSearch-box input[type="text"]::placeholder {
  color: #fff !important;
}
.menuBox .menuSearch-box .searchsubmit {
	position: absolute;
	top: 0;
	right: 5px;
  padding: 10px 14px 5px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
  background: url(./images/ico_search_white.svg) right center no-repeat;
  background-size: 13px auto;
}
.menuBox .searchBtn a{
  color: #fff;
  font-size: 16px;
}
.menuBox ul {
  margin-bottom:40px ;
}
.menuBox ul li{
  border-bottom: 1px solid #fff;
}
.menuBox li a{
  display: block;
  font-size: 11px;
  color: #FDD700;
  padding: 15px 0px;
  line-height: 1.2em;
}
.menuBox li a span.en{
  font-size: 20px;
  color: #fff;
}
.menuBox .gnavBtnFlex{
  width: 100%;
  display: block;
}
.menuBox .gnavBtnFlex .newBtn,
.menuBox .gnavBtnFlex .mypageBtn{
  margin-bottom: 15px;
}
.menuBox .gnavBtnFlex .newBtn a,
.menuBox .gnavBtnFlex .mypageBtn a,
.menuBox .gnavBtnFlex .cartBtn a{
  border-radius: 50px;
  border: 1px solid #fff;
  text-align: center;
  display: inline-block;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  width: 100%;
}
.menuBox .gnavBtnFlex .newBtn a img{
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.menuBox .gnavBtnFlex .mypageBtn a img{
  width: 17px;
  margin-right: 10px;
  vertical-align: middle;
}
.menuBox .gnavBtnFlex .cartBtn a img{
  width: 23px;
  margin-right: 10px;
  vertical-align: middle;
}
.menu {
  display: block;
  position: fixed;
  top: 0;
  right: -120vw;
  width: 0;
  height: 100%;
  -webkit-transition: width .2s;
  -o-transition: width .2s;
  transition: width .2s;
  -webkit-transition: all ease-in-out .6s;
  -o-transition: all ease-in-out .6s;
  transition: all ease-in-out .6s;
  z-index: 99999999;
  width: 75vw;
}
.menu--isOpen {
  width: 100vw;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.menuTrigger {
  position: fixed;
  right: 43px;
  top: 65px;
  z-index: 999999999;
}
.pan{
  padding: 10px 0px 0px 43px;
}
.pan li{
  display: inline-block;
  font-size: 12px;
  position: relative;
}
.pan li::after{
  content: ">";
  font-size: 11px;
  display: inline-block;
  margin: 0px 5px;
  width: auto;
}
.pan li:last-child:after{
  display: none;
}
@media screen and (min-width: 1081px) {
  .menu{
    display: none;
  }
  .menuTrigger{
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .nav{
    width: 500px;
  }
  .nav ul{
    gap: 0 25px;
  }
  .nav ul li a{
    font-size: 14px;
  }
  .switch_text::before {
    font-size: 12px;
  }
}
@media screen and (max-width: 1080px) {
  .header .nav ,
  .header .btnFlex .search-box{
    display: none;
  }
  .header .btnFlex{
    width: 70px;
  }
  .header .navFlex{
    width: calc(100% - 60px);
  }
  .header.change-color .menuTrigger {
    position: fixed;
    right: 43px;
    top: 33px;
    z-index: 999999999;
    transition: .3s;
  }
  .menuTrigger a {
    display: block;
    width: 33px;
    height: 14px;
    background: url(./images/ico_open.svg) left top no-repeat;
    background-size: 100% auto;
  }
  .activeTrigger a {
    display: block;
    background: url(./images/ico_close.svg) left top no-repeat;
    background-size: 100% auto;
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .menu .logo {
    padding: 15px 16px;
  }
  .menu .logo a h1 span.en{
    font-size: 19px;
  }
  .menuTrigger {
    position: fixed;
    right: 15px;
    top: 23px;
    z-index: 999999999;
  }
  .header.change-color .menuTrigger {
    position: fixed;
    right: 15px;
    top: 23px;
    z-index: 999999999;
    transition: .3s;
  }
  .menuTrigger a {
    display: block;
    width: 22px;
    height: 9px;
    background: url(./images/ico_open.svg) left top no-repeat;
    background-size: 100% auto;
  }
  .activeTrigger a {
    display: block;
    background: url(./images/ico_close.svg) left top no-repeat;
    background-size: 100% auto;
    width: 15px;
    height: 15px;
  }
  /* .activeTrigger a:hover {
    background: url(./images/ico_close.svg) left top no-repeat;
    background-size: 100% auto;
    width: 15px;
    height: 15px;
  } */
  .header{
    height: 50px;
    padding: 15px 0px 15px 15px;
  }
  .header.change-color {
    padding: 15px 0px 15px 15px;
  }
  .header .navFlex{
    width: calc(100% - 50px);
  }
  .logo{
    width: 170px;
  }
  .logo a h1{
    font-size: 19px;
  }
  .header .btnFlex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 43px;
  }
  .header .btnFlex .mypageBtn{
    width: 12px;
    margin-right: 0px;
    line-height: 1em;
  }
  .header .btnFlex .cartBtn{
    width: 16px;
    line-height: 1em;
  }
  .header .btnFlex .cartBtn .count{
    width: 8px;
    height: 8px;
    font-size: 7px;
    right: -4px;
    top: -4px;
  }
  .header .btnFlex .mypageBtn img{
    vertical-align: baseline;
  }
  .header .btnFlex .cartBtn img{
    vertical-align: baseline;
  }
  .pan{
    padding: 10px 0px 0px 19px;
  }
  .pan li{
    font-size: 11px;
  }
}


/* main */
.main{
  width: 100%;
}
.main .photoFlex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .photoLeft{
  width: 49.48%;
}
.main .photoLeft figure{
  margin-bottom:46px ;
}
.main .photoLeft .detailBox{
  position: relative;
}
.main .photoLeft .detailBox p.strong{
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FDD700;
  font-size: 69px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
.main .photoLeft .detailBox p.detail{
  color: #000;
  font-size: 15px;
  position: absolute;
  text-align: left;
  top: 42px;
  right: 0;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.2em;
  font-weight: 700;
}
.main .photoRight{
  width: 49.48%;
  padding-top: 136px;
}
@media screen and (max-width: 1000px) {
  .main .photoLeft .detailBox p.strong{
    font-size: 50px;
  }
  .main .photoLeft .detailBox p.detail{
    font-size: 11px;
    top: 28px;
  }
}
@media screen and (max-width: 600px) {
  .main{
    padding-top: 50px;
  }
  .main .photoFlex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .main .photoLeft{
    width: 100%;
  }
  .main .photoLeft figure{
    margin-bottom:15px ;
    width: 85.3%;
  }
  .main .photoLeft .detailBox{
    position: static;
  }
  .main .photoLeft .detailBox p.strong{
    font-size: 48px;
    width: 100%;
    text-align: center;
    position: absolute;
    left: inherit;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .main .photoLeft .detailBox p.detail{
    font-size: 10px;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .main .photoRight{
    margin-left: auto;
    width: 85.3%;
    padding-top: 0px;
  }
}




/*concept*/
.concept{
  width: 100%;
  overflow: hidden;
}
.concept__inner{
  width: 90%;
  margin: 0 auto;
  /* max-width: 1080px; */
  padding: 100px 0px 130px;
}
.conceptFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  /* position: relative; */
}
.conceptFlex .photoBox{
  width:44.6%;
  z-index: 3;
}
.conceptFlex .detailBox{
  width: 49.0%;
  padding-top: 48px;
}
.conceptFlex .detailBox p{
  margin-bottom: 20px;
}
.conceptFlex .detailBox p.last{
  margin-top: 30px;
}
.conceptFlex .detailBox p.strong{
  font-size:26px ;
  font-weight: 700;
}
.conceptFlex .loopBox {
  display: flex;
  width: 100vw;
  margin-top: 30px;
}
.conceptFlex p.loopItem {
  flex: 0 0 auto;
  font-size: 69px;
  white-space: nowrap;
  padding: 0 12px;
  color: rgb(253, 215, 0, .5);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0px;
}
.conceptFlex p.loopItem:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.conceptFlex p.loopItem:nth-child(even) {
  animation: loop2 50s linear infinite;
}
@keyframes loop {
  0% {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
      transform: translateX(0);
  }
  to {
      transform: translateX(-200%);
  }
}
.loopBoxTb{
  display: none;
}
@media screen and (max-width: 1000px) {
  .conceptFlex .loopItem {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .conceptFlex {
    align-items: flex-start;
  }
  .conceptFlex .photoBox{
    width:40.6%;
  }
  .conceptFlex .detailBox{
    width: 53.0%;
    padding-top: 0px;
  }
  .conceptFlex .detailBox p.strong{
    font-size:24px ;
  }
  .conceptFlex .loopBox {
    display: none;
  }
  .loopBoxTb {
    display: flex;
    width: 100vw;
    margin-top: 30px;
  }
  p.loopItem {
    flex: 0 0 auto;
    font-size: 69px;
    white-space: nowrap;
    padding: 0 12px;
    color: rgb(253, 215, 0, .5);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0px;
  }
  p.loopItem:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
  }
  p.loopItem:nth-child(even) {
    animation: loop2 50s linear infinite;
  }
  @keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
  }
  @keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
  }
}
@media screen and (max-width: 600px) {
  .concept__inner{
    padding: 60px 0px 50px;
  }
  .conceptFlex .photoBox{
    width:100%;
    margin-bottom:20px ;
  }
  .conceptFlex .detailBox{
    width: 100%;
    padding-top: 0px;
  }
  .conceptFlex .detailBox p{
    margin-bottom: 10px;
  }
  .conceptFlex .detailBox p.strong{
    font-size:18px ;
  }
  .conceptFlex .detailBox p.last{
    margin-top: 0px;
  }
  .conceptFlex .loopBox {
    display: flex;
    width: 100vw;
    margin-top: 20px;
  }
  .conceptFlex p.loopItem {
    font-size: 39px;
    padding: 0 7px;
  }
  .loopBoxTb {
    display: none;
  }
}




/*about*/
.about{
  width: 100%;
  background: linear-gradient(#FBFBF9 30px, #F5F5F0 30px);
}
.about__inner{
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0px 0px 80px;
  text-align: center;
}
.aboutFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aboutFlex .aboutSet{
  width:31.48%;
}
.aboutFlex .aboutSet figure{
  margin-bottom: 30px;
  position: relative;
}
.aboutFlex .aboutSet figure figcaption{
  position: absolute;
  font-size: 36px;
  color: #FDD700;
  text-shadow: 3px 3px 0px #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  left: 5px;
  bottom: -23px;
}
.aboutFlex .aboutSet figure figcaption span.no{
  font-size: 40px;
}
.aboutFlex .aboutSet p.strong{
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .aboutFlex .aboutSet p.strong{
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .about{
    background: linear-gradient(#FBFBF9 14px, #F5F5F0 14px);
  }
  .about__inner{
    padding: 0px 0px 50px;
    text-align: left;
  }
  .aboutFlex .aboutSet{
    width:100%;
    margin-bottom: 35px;
  }
  .aboutFlex .aboutSet:last-child{
    margin-bottom: 0px;
  }
  .aboutFlex .aboutSet figure{
    margin-bottom: 20px;
  }
  .aboutFlex .aboutSet figure figcaption{
    font-size: 31px;
    text-shadow: 2px 2px 0px #fff;
    left: 3px;
    bottom: -20px;
  }
  .aboutFlex .aboutSet figure figcaption span.no{
    font-size: 35px;
  }
  .aboutFlex .aboutSet p.strong{
    margin-bottom: 10px;
    font-size: 18px;
  }
}

/* recommend */
.recommend{
  width: 100%;
}
.recommend__inner{
  width: 90%;
  padding: 100px 0px 90px;
  margin: 0 auto;
  max-width: 1080px;
}
.recommend__inner .ttlBox{
  max-width: 1080px;
}
.recommend__inner .slick {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
  margin-bottom: 60px;
}
.recommend__inner .slickSet {
  width: 340px;
  margin-right: 30px;
  height: auto;
}
.recommend__inner .slickSet figure {
  position: relative;
  border-radius: 30px;
  border: 3px solid #000;
  margin-bottom: 20px;
}
.recommend__inner .slickSet figure img{
  width: 100%;
  border-radius: 30px;
}
.recommend__inner .slickSet figure figcaption {
  font-size:12px ;
  background: #000;
  padding:12px 33px ;
  border-radius: 20px 0px 20px 0px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
}
.recommend__inner .slickSet p.name {
  margin-bottom: 10px;
}
.recommend__inner .slickSet p.price {
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.recommend__inner .slickSet p.price span.tax{
  font-size: 11px;
  font-family: "Noto sans JP", sans-serif;
  font-weight: 500;
  padding-left: 5px;
}
.recommend__inner .slick-prev {
  left: -20px;
}
.recommend__inner .slick-next {
  right:8px ;
}
.recommend__inner .slick-prev, .recommend__inner .slick-next {
  top: calc(58% - 60px);
  z-index: 1;
}
.recommend__inner .slick-prev:before, .recommend__inner .slick-next:before {
  color: #000;
  opacity: 1;
}
.recommend__inner .slick-arrow:before{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.recommend__inner .slick-prev:before{
  background: url(./images/ico_slide_left_yellow.svg);
  background-size: contain;
}
.recommend__inner .slick-next:before{
  background: url(./images/ico_slide_right_yellow.svg);
  background-size: contain;
}
.recommend__inner .slick-arrow{
  z-index:2;
  width:60px;
  height:60px;
}
.recommend__inner .slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
  margin: 0px 30px 0px 0px;
}
.recommend__inner .slick-prev.slick-disabled,
.recommend__inner .slick-next.slick-disabled {
    opacity: 0;
}
.recommend__inner .slick-prev.slick-disabled:before,
.recommend__inner .slick-next.slick-disabled:before {
    opacity: 0;
}
@media screen and (max-width: 600px) {
  .recommend__inner{
    width: 90%;
    padding: 60px 0px ;
  }
  .recommend__inner .slick {
    margin-bottom: 30px;
  }
  .recommend__inner .slickSet {
    width: 187px;
    margin-right: 20px;
  }
  .recommend__inner .slickSet figure {
    border-radius: 10px;
    border: 2px solid #000;
    margin-bottom: 10px;
  }
  .recommend__inner .slickSet figure img{
    border-radius: 10px;
  }
  .recommend__inner .slickSet figure figcaption {
    font-size:11px ;
    padding:8px 18px ;
    border-radius: 10px 0px 7px 0px;
  }
  .recommend__inner .slickSet p.name {
    line-height: 1.46em;
  }
  .recommend__inner .slickSet p.price {
    font-size: 18px;
  }
  .recommend__inner .slickSet p.price span.tax{
    padding-left: 3px;
  }
  .recommend__inner .slick-prev, .recommend__inner .slick-next {
    display: none !important;
  }
  .recommend__inner .slick-slide {
    margin: 0px 20px 0px 0px;
  }
  .recommend__inner .slick-active {
    opacity: 1;
  }
  .recommend__inner .slick-current {
    opacity: 1;
  }
  .recommend__inner .slick-prev.slick-disabled,
  .recommend__inner .slick-next.slick-disabled {
      opacity: 0;
  }
  .recommend__inner .slick-prev.slick-disabled:before,
  .recommend__inner .slick-next.slick-disabled:before {
      opacity: 0;
  }
}

/* photo */
.photo{
  width: 100%;
}
.photo__inner{
  padding: 0px 0px 90px;
}
.photoSlider .slick-slide {
  width: 365px !important;
  margin-right: 15px;
}
.photoSlider .slick-track {
  width: 7000px !important;
}
.photoSlider .even img{
  padding-top: 40px;
}
@media screen and (max-width: 600px) {
  .photo__inner{
    padding: 0px 0px 60px;
  }
  .photoSlider .slick-slide {
    width: 210px !important;
    margin-right: 10px;
  }
  .photoSlider .slick-track {
    width: 7000px !important;
  }
  .photoSlider .even img{
    padding-top: 20px;
  }
}

/* maker */
.maker{
  width: 100%;
  overflow: hidden;
}
.maker__inner{
  padding: 0px 0px 80px;
  margin: 0 auto;
  text-align: center;
}
.maker__inner .ttlBox{
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 25px;
}
.maker__inner .loopBox{
  display: flex;
  width: 300vw;
  margin-bottom: 35px;
}
.maker__inner p.loopItem {
  flex: 0 0 auto;
  font-size: 60px;
  white-space: nowrap;
  padding: 0 12px;
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FDD700;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0px;
}
.maker__inner p.loopItem:nth-child(odd) {
  animation: loop3 50s -25s linear infinite;
}
.maker__inner p.loopItem:nth-child(even) {
  animation: loop4 50s linear infinite;
}
@keyframes loop3 {
  0% {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}
@keyframes loop4 {
  0% {
      transform: translateX(0);
  }
  to {
      transform: translateX(-200%);
  }
}
.makerFlex{
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.makerFlex a{
  width: 19%;
  margin-bottom: 20px;
}
.makerFlex a:hover{
  opacity: 1;
}
.makerFlex a img{
  transition: 0.5s;
  border-radius:12px ;
  border: 3px solid #000;
}
.makerFlex a:hover img{
  transition: 0.5s;
  box-shadow: 0px 5px 0px #000;
 transform: translate(0, -8px);
 opacity: 1;
}
@media screen and (max-width: 768px) {
  .makerFlex a{
    width: 33%;
  }
}
@media screen and (max-width: 600px) {
  .maker__inner{
    padding: 0px 0px 45px;
  }
  .maker__inner .ttlBox{
    margin-bottom: 15px;
  }
  .maker__inner .loopBox{
    margin-bottom: 20px;
  }
  .maker__inner p.loopItem {
    font-size: 33px;
    padding: 0 8px;
  }
  .makerFlex a{
    width: 48.5%;
    margin-bottom: 15px;
  }
  .makerFlex a img{
    border-radius:10px ;
    border: 2px solid #000;
  }
  .makerFlex a:hover img{
    box-shadow: 0px 3px 0px #000;
    transform: translate(0, -5px);
  }
}




/* model */
.model{
  width: 100%;
}
.model .model__inner{
  width: 100%;
  background: url(./images/bg_model_pc.png) top left no-repeat;
  background-size:94% 100% ;
  position: relative;
}
.model__inner .btn{
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.model__inner{
  padding: 80px 0px 30px;
  text-align: center;
}
.model__inner .ttlBox{
  max-width: 1080px;
}
.model__inner .modelSlider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 60px;
}
.model__inner .slickSet img {
  height: auto;
  width: 100%;
}
.model__inner .slickSet figure {
  border-radius: 12px;
  margin: 0 15px 10px;
}
.model__inner .slickSet figure img{
  width: 100%;
  border-radius: 12px;
}
.model__inner .slickSet p.name {
  font-size: 18px;
  text-align: center;
}
.model__inner .slick-prev {
  left: 8%;
}
.model__inner .slick-next {
  right:8% ;
}
.model__inner .slick-dots {
  display: none !important;
}
.model__inner .slick-prev, .model__inner .slick-next {
  top: calc(65% - 60px);
  z-index: 1;
}
.model__inner .slick-prev:before, .model__inner .slick-next:before {
  color: #000;
  opacity: 1;
}
.model__inner .slick-arrow:before{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.model__inner .slick-prev:before{
  background: url(./images/ico_slide_left_black.svg);
  background-size: contain;
}
.model__inner .slick-next:before{
  background: url(./images/ico_slide_right_black.svg);
  background-size: contain;
}
.model__inner .slick-arrow{
  z-index:2;
  width:60px;
  height:60px;
}
.model__inner .tab-contents {
  display: none;
}
.model__inner .tab-contents.show {
  display: block;
  opacity: 0;
  animation-name: displayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.model__inner  .tab-wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 765px;
  margin: 0 auto;
  margin-bottom: 40px;
  align-items: center;
  position: relative;
  width: 80%;
}
.model__inner .tab-btn {
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  background-color:#c1c1c1;
	padding:7px;
  text-align: center;
  font-size: 16px;
  line-height: 1.43em;
  color: #fff;
  text-align: center;
  width: 18.9%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.model__inner .tab-btn.show {
  position: relative;
  background:#FDD700;
  color: #fff;
}
.model__inner .slickSet a{
  display: inline-block;
  width: 100%;
}
.model__inner .slickSet a:hover{
  opacity: 1;
  transition: .5s;
}
.model__inner .slickSet a{
  transition: .5s;
}
.model__inner .slickSet a figure{
  position: relative;
}
.model__inner .slickSet a:hover figure::after{
  position: absolute;
  content: "";
  background: url(./images/bg_hover.png) center no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.model__inner .slickSet a:hover .hover{
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .model{
    width: 100%;
  }
  .model .model__inner{
    width: 94%;
    background: url(./images/bg_model_sp.png) top left no-repeat;
    background-size:100% 100% ;
    position: relative;
    padding: 50px 0px 60px;
  }
  .model .model__inner .ttlBox{
    width: 90%;
  }
  .model__inner .btn{
    bottom: -30px;
  }
  .model__inner .modelSlider {
    margin: 0 auto;
    margin-bottom: 0px;
  }
  .model__inner .slickSet img {
    height: auto;
    width: 100%;
  }
  .model__inner .slickSet figure {
    border-radius: 10px;
    margin: 0 10px 5px;
  }
  .model__inner .slickSet figure img{
    border-radius: 10px;
  }
  .model__inner .slickSet p.name {
    font-size: 13px;
    line-height: 1.46em;
  }
  .model__inner .slick-prev {
    left: 13%;
  }
  .model__inner .slick-next {
    right:13% ;
  }
  .model__inner .slick-prev, .model__inner .slick-next {
    top: calc(60% - 30px);
  }
  .model__inner .slick-arrow{
    width:30px;
    height:30px;
  }
  .model__inner  .tab-wrap ul {
    margin-bottom: 23px;
    width: 90%;
  }
  .model__inner .tab-btn {
    padding:6px;
    font-size: 12px;
    width: 49%;
    margin-bottom: 7px;
  }
}

/* parts */
.parts{
  width: 100%;
}
.parts__inner{
  padding: 130px 0px 0px;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.parts__inner ul li {
  display: inline-block;
  border: 2px solid #FDD700;
  margin: 0px 10px 20px 0px;
  border-radius: 50px;
  background: #fff;
}
.parts__inner ul li a{
  display: block;
  font-size: 16px;
  line-height: 1.875em;
  padding:3px 15px;
  border-radius: 50px;
}
.parts__inner ul li a img{
  width:13px ;
  margin-right: 5px;
  vertical-align: baseline;
}
.parts__inner ul li a:hover{
  background: #FDD700;
  opacity: 1;
}
.parts__inner ul li{
  opacity: 1;
}
.parts__inner ul li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
  transition: .5s;
}
.list-btn {
  display: none;
}
@media screen and (max-width: 600px) {
  .parts__inner{
    padding: 85px 0px 0px;
  }
  .parts__inner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .parts__inner ul li {
    display: inline-block;
    margin: 0px 0px 10px 0px;
    width: 48%;
  }
  .parts__inner ul li a{
    font-size: 11px;
    line-height: 1.45em;
    padding:5px 7px;
  }
  .parts__inner ul li a img{
    width:10px ;
    margin-right: 2px;
    vertical-align: baseline;
  }
  .list-btn.is-btn-hidden{
    display:none;
  }
  .list-btn {
    max-width: 163px;
    margin: 0 auto;
    margin-top: 15px;
    border-radius: 50px;
    display: block;
  }
  .list-btn button {
    display: inline-block;
    border-radius: 50px;
    width: 100%;
    font-size:11px ;
    font-weight: 500;
    color: #fff;
    padding:5px ;
    background: #000 url(./images/ico_more.svg) left 95% center no-repeat;
    background-size: 8px auto;
  }
}




/* footer */
footer{
  color: #fff;
  background: #000;
  margin-top: 100px;
}
footer .footerFlex{
  padding: 100px 0px;
  background: #000;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footerFlex .logoSet{
  width: 285px;
}
.footerFlex .logoSet a{
  display: inline-block;
}
.footerFlex .logoSet span.en{
  margin-bottom: 50px;
  display: block;
  font-size: 40px;
  color: #fff;
}
.footerFlex .logoSet p{
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.42em;
  font-weight: 700;
}
.footerFlex .logoSet p.copy{
  font-size: 11px;
  font-weight: 500;
}
.footerFlex .logoSet address{
  font-size: 13px;
  line-height: 1.69em;
  margin-bottom: 5px;
}
.footerFlex nav{
  /* width:calc(100% - 445px); */
  width: 645px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 60px;
}
.footerFlex nav ul{
  display: block;
}
.footerFlex nav ul li{
  margin-bottom: 15px;
  line-height: 1em;
}
.footerFlex nav ul li:last-child{
  margin-bottom: 0px;
}
.footerFlex nav ul li a{
  line-height: 1.46em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.footerFlex nav ul.sub li a{
  font-size: 12px;
  font-weight: 500;
}
.footerFlex nav .btnBox{
  width: 200px;
}
.footerFlex nav .btnBox .newBtn,
.footerFlex nav .btnBox .mypageBtn{
  margin-bottom: 20px;
}
.footerFlex nav .btnBox .newBtn a,
.footerFlex nav .btnBox .mypageBtn a,
.footerFlex nav .btnBox .cartBtn a{
  border-radius: 50px;
  border: 1px solid #fff;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10px 0;
  transition: 0s;
}
.footerFlex nav .btnBox .newBtn a:hover,
.footerFlex nav .btnBox .mypageBtn a:hover,
.footerFlex nav .btnBox .cartBtn a:hover{
  border: 1px solid #FDD700;
  color: #000;
  background: #FDD700;
  transition: 0s;
}
.footerFlex nav .btnBox .newBtn a span{
  background: url(./images/ico_new_white.svg) left center no-repeat;
  padding-left: 30px;
  background-size: 21px auto;
  transition: 0.5s;
}
.footerFlex nav .btnBox .newBtn a:hover span{
  background: url(./images/ico_new_black.svg) left center no-repeat;
  background-size: 21px auto;
  transition: 0.5s;
}
.footerFlex nav .btnBox .mypageBtn a span{
  background: url(./images/ico_mypage_white.svg) left center no-repeat;
  padding-left: 28px;
  background-size: 18px auto;
  transition: 0.5s;
}
.footerFlex nav .btnBox .mypageBtn a:hover span{
  background: url(./images/ico_mypage_black.svg) left center no-repeat;
  background-size: 18px auto;
  transition: 0.5s;
}
.footerFlex nav .btnBox .cartBtn a span{
  background: url(./images/ico_cart_white.svg) left center no-repeat;
  padding-left: 33px;
  background-size: 23px auto;
  transition: 0.5s;
}
.footerFlex nav .btnBox .cartBtn a:hover span{
  background: url(./images/ico_cart_black.svg) left center no-repeat;
  background-size: 23px auto;
  transition: 0.5s;
}
.footerFlex nav .detailSp{
  display: none;
}
@media screen and (max-width: 1080px) {
  .footerFlex .logoSet{
    width:100%;
    margin-bottom: 20px;
  }
  .footerFlex nav{
    width:100%;
  }
}
@media screen and (max-width: 768px) {
  .footerFlex .logoSet{
    width:100%;
    margin-bottom: 30px;
  }
  .footerFlex nav{
    width:100%;
    gap: 0px 12%;
  }
}
@media screen and (max-width: 600px) {
  footer{
    margin-top: 50px;
  }
  footer .footerFlex{
    padding: 50px 0px;
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .footerFlex .logoSet p,
  .footerFlex .logoSet address{
    display: none;
  }
  .footerFlex .logoSet span.en{
    margin-bottom: 0px;
    font-size: 26px;
  }
  .footerFlex nav {
    display: block;
    width:100%;
    gap: 0px 15px;
  }
  .footerFlex nav .detailSp{
    display: block;
  }
  .footerFlex nav .detailSp p{
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.42em;
    font-weight: 700;
  }
  .footerFlex nav .detailSp p.copy{
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 0px;
  }
  .footerFlex nav .detailSp address{
    font-size: 12px;
    line-height: 1.75em;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .footerFlex nav{
    width:100%;
  }
  .footerFlex nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 0;
  }
  .footerFlex nav ul.sub{
    margin-bottom: 20px;
  }
  .footerFlex nav ul li{
    width: 48%;
    margin-bottom: 10px;
    line-height: 1em;
  }
  .footerFlex nav ul li:last-child{
    margin-bottom: 10px;
  }
  .footerFlex nav ul li a{
    line-height: 1.46em;
    font-size: 12px;
  }
  .footerFlex nav ul.sub{
    margin-bottom: 20px;
  }
  .footerFlex nav ul.sub li a{
    font-size: 12px;
  }
  .footerFlex nav .btnBox{
    width: 305px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .footerFlex nav .btnBox .newBtn,
  .footerFlex nav .btnBox .mypageBtn{
    margin-bottom: 15px;
  }
  .footerFlex nav .btnBox .newBtn a,
  .footerFlex nav .btnBox .mypageBtn a,
  .footerFlex nav .btnBox .cartBtn a{
    border-radius: 50px;
    border: 1px solid #fff;
    text-align: center;
    display: inline-block;
    padding:10px 0px;
    color: #fff;
    font-size: 14px;
    width: 100%;
  }
  /* .footerFlex nav .btnBox .newBtn a img{
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .footerFlex nav .btnBox .mypageBtn a img{
    width: 17px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .footerFlex nav .btnBox .cartBtn a img{
    width: 23px;
    margin-right: 10px;
    vertical-align: middle;
  } */

}




.tb{
  display: none;
}
.sp{
  display: none;
}
.tbonly{
  display: none;
}
@media screen and (max-width: 768px) {
  .tb{
    display: block;
  }
  .tbonly{
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .pc{
    display: none;
  }
  .tbonly{
    display: none;
  }
  .sp{
    display: block;
  }
}
#page-top a{
	display: flex;
	justify-content:center;
	width: 60px;
	height: 60px;
	transition:all 0.3s;
}
#page-top {
	position: fixed;
	right: 20px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
@media screen and (max-width: 834px) {
  #page-top {
    right: 10px;
    bottom:70px;
  }
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* contact */

/* .header{
  background: #fff !important;
} */
.contact{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.contact__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.contact__inner .ttlBox{
  max-width: 1080px;
}
 /* .contactBox{
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom:2px dashed #000 ;
} */
 .contactBox:last-child{
  margin-top: 60px;
  padding-top: 60px;
  border-top:2px dashed #000 ;
}
 .contactBox .ttlBox{
  margin-bottom: 30px;
}
 .contactBox .ttlBox h5{
  font-size: 27px;
  margin-bottom:30px ;
  font-weight: 700;
}
 .contactBox .ttlBox p{
  line-height: 1.46em;
}
 .contactBox .ttlBox p a{
  line-height: 1.45em;
  font-size: 22px;
  font-weight: 500;
  padding-left: 19px;
  background: url(./images/ico_tel.svg) left center no-repeat;
  background-size: 16px auto;
  display: inline-block;
  margin-right:5px ;
}
 .contactBox .ttlBox p span.fontS{
  font-size: 13px;
}
.c_form h5 {
  margin: 0 0 10px 0;
  padding:0;
  border-bottom: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
}
.c_form h6 {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .c_form h5 {
    margin: 0 0 15px 0;
    font-size: 27px;
  }
  .c_form h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact{
    padding-top: 50px;
  }
  .contact__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
   .contactBox{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
   .contactBox:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
   .contactBox .ttlBox{
    margin-bottom: 20px;
  }
   .contactBox .ttlBox h5{
    font-size: 16px;
    margin-bottom: 10px;
  }
   .contactBox .ttlBox p a{
    font-size: 18px;
    padding-left: 17px;
    background: url(./images/ico_tel.svg) left center no-repeat;
    background-size: 13px auto;
    margin-bottom: 5px;
  }
   .contactBox .ttlBox p span.fontS{
    font-size: 11px;
    display: block;
  }
}

/* login */

/* .header{
  background: #fff !important;
} */
.login{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.login__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.login__inner .ttlBox{
  max-width: 1080px;
}
.login__inner .loginBox{
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom:2px dashed #000 ;
}
.login__inner .loginBox:last-child{
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom:none;
}
.login__inner .loginBox .ttlBox{
  margin-bottom: 30px;
}
.login__inner .loginBox .ttlBox h3{
  font-size: 27px;
  margin-bottom:15px ;
  font-weight: 700;
}
.login__inner .loginBox .ttlBox p{
  line-height: 1.46em;
}
.login__inner .loginBox .btn{
  max-width: 300px;
  margin-top: 60px;
}
.login__inner .loginBox .btn a{
  background: #000;
}
.login__inner .loginBox .btn a:hover{
  background: #FDD700;
}
@media screen and (max-width: 600px) {
  .login{
    padding-top: 50px;
  }
  .login__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
  .login__inner .loginBox{
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .login__inner .loginBox:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .login__inner .loginBox .ttlBox{
    margin-bottom: 20px;
  }
  .login__inner .loginBox .ttlBox h3{
    font-size: 16px;
  }
  .login__inner .loginBox .btn{
    max-width: 305px;
    margin-top: 20px;
    font-size: 16px;
  }

}

/* notation */

/* .header{
  background: #fff !important;
} */
.notation{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.notation__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.notation__inner .ttlBox{
  max-width: 1080px;
}
.notation__inner table{
  width: 100%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  table-layout: fixed;
}
.notation__inner .tableBox table tr th ,
.notation__inner .tableBox table tr td {
  padding: 18px 20px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  font-size: 14px;
  line-height: 1.42em;
  font-weight: 500;
  white-space: normal;

}
.notation__inner .tableBox table th:first-child ,
.notation__inner .tableBox table td:first-child {
  background: #EFEFEF;
  text-align: center;
  width: 32.5%;
}
@media screen and (max-width: 600px) {
  .notation{
    padding-top: 50px;
  }
  .notation__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
  .notation__inner .tableBox table tr th ,
  .notation__inner .tableBox table tr td {
    padding: 13px 10px;
    font-size: 13px;
    line-height: 1.46em;
    display: block;
  }
  .notation__inner .tableBox table th:first-child ,
  .notation__inner .tableBox table td:first-child {
    text-align: left;
    width: auto;
  }
}

/* privacy */

/* .header{
  background: #fff !important;
} */
.privacy{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.privacy__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.privacy__inner .ttlBox{
  max-width: 1080px;
}
.privacy__inner .subBox{
  margin-bottom: 60px;
}
.privacy__inner .privacySet{
  margin-bottom: 60px;
}
.privacy__inner .privacySet:last-child{
  margin-bottom: 0px;
}
.privacy__inner .privacySet .ttlBox{
  display: block;
  margin-bottom: 20px;
  padding: 10px 0px 10px 20px;
  border-bottom: 2px solid #000;
  background: url(./images/ico_circle_yellow.svg) left center no-repeat;
  background-size:10px auto ;
}
.privacy__inner .privacySet .ttlBox h3{
  font-size: 16px;
  line-height: 1.875em;
  color: #000;
  font-weight: 700;
}
.privacy__inner .privacySet p.first{
  margin-bottom: 10px;
}
.privacy__inner .privacySet p.last{
  margin-top: 10px;
}
.privacy__inner .privacySet ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-bottom: 3px;
  padding-left: 1em;
  text-indent: -1em;
}
.privacy__inner .privacySet ul li:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .privacy{
    padding-top: 50px;
  }
  .privacy__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
  .privacy__inner .subBox{
    margin-bottom: 30px;
  }
  .privacy__inner .privacySet{
    margin-bottom: 30px;
  }
  .privacy__inner .privacySet .ttlBox{
    display: block;
    margin-bottom: 15px;
    padding: 8px 0px 8px 16px;
    background-size:8px auto ;
  }
  .privacy__inner .privacySet .ttlBox h3{
    font-size: 13px;
    line-height: 1.84em;
  }
  .privacy__inner .privacySet ul li{
    font-size: 13px;
    line-height: 1.84em;
    margin-bottom: 3px;
  }
}

/* products */

/* .header{
  background: #fff !important;
} */
.products{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.products__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.products__inner .ttlBox{
  max-width: 1080px;
}
.pageFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pageFlex .pageLeft{
  width: 24.1%;
}
.pageLeft .subTtlBox{
  margin-bottom: 40px;
}
.pageLeft .subTtlBox p{
  font-size: 11px;
  margin-bottom: 5px;
  color: #c1c1c1;
  line-height: 1em;
}
.pageLeft .subTtlBox span.en{
  font-size: 30px;
  color: #000;
}
.pageLeft .searchBlock{
  margin-bottom: 30px;
}
.pageLeft .searchBlock .searchBox{
  margin-bottom: 20px;
}
.pageLeft .searchBlock .searchBox p{
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pageLeft .searchBlock select{
  color:#c1c1c1 ;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  user-select: none;
  width: 100%;
  padding:12px 15px ;
  margin-bottom: 20px;
  border: 2px #000 solid;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none; 
  appearance: none; 
  position: relative;
  display: block;
  background: url(./images/ico_bottom_yellow.svg) 95% center no-repeat;
  background-size: 10px auto;
}
select::-ms-expand{
  display: none;
}
.pageLeft .btn{
  max-width: 220px;
  width:90% ;
  margin-top: 10px;
}
.pageLeft input{
  border-radius: 50px;
  display: inline-block;
  padding: 15px 0;
  color: #fff;
  border: 1px solid #000;
  background: #000 url(./images/ico_right_white.svg) 93% center no-repeat;
  background-size: 14px auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66em;
  width: 100%;
  text-align: center;
}
.pageLeft input:hover{
  color: #000;
  border: 1px solid #FDD700;
  background: #FDD700 url(./images/ico_right_black.svg) 93% center no-repeat;
  background-size: 14px auto;
  opacity: 1;
}
.pageRight{
  width: 69.4%;
}
.productsFlex  {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: flex-start;
  gap: 0 4%;
}
.productsFlex .productsSet {
  width: 30.6%;
  margin-bottom: 50px;
}
.productsFlex .productsSet figure {
  position: relative;
  border-radius: 12px;
  border: 2px solid #000;
  margin-bottom: 17px;
}
.productsFlex .productsSet figure img{
  width: 100%;
  border-radius: 12px;
}
.productsFlex .productsSet figure figcaption {
  font-size:11px ;
  background: #000;
  padding:7px 20px ;
  border-radius: 12px 0px 10px 0px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
}
.productsFlex .productsSet p.name {
  margin-bottom: 15px;
}
.productsFlex .productsSet p.price {
  font-size: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.productsFlex .productsSet p.price span.tax{
  font-size: 11px;
  font-family: "Noto sans JP", sans-serif;
  font-weight: 500;
  padding-left: 5px;
}
.pagination{
  margin:40px 0 0;
}
.nav-links{
  display:flex;
  max-width: 265px;
  margin: 0 auto;
  justify-content: center;
}
.pagination .page-numbers{
  display:inline-block;
  margin-right:10px;
  padding:6px 10px;
  color:#000;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1em;
  border: 2px solid #FBFBF9;
}
.pagination .current{
  border: 2px solid #000;
}
.pagination .prev,
.pagination .next{
  background:transparent;
  box-shadow:none;
}
.pagination .dots{
  background:transparent;
  box-shadow:none;
}
@media screen and (max-width: 768px) {
  .pageLeft .btn a{
    font-size: 14px;
  }
}
header{
  border: none !important;
}
@media screen and (max-width: 600px) {
  .products{
    padding-top: 50px;
  }
  .products__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
  /* .products__inner._search{
    padding:  0px;
  } */
  .pageFlex .pageLeft{
    width: 100%;
    margin-bottom: 50px;
  }
  .pageLeft .subTtlBox{
    margin-bottom: 20px;
  }
  .pageLeft .subTtlBox span.en{
    font-size: 26px;
  }
  .pageLeft .searchBlock{
    margin-bottom: 20px;
  }
  .pageLeft .searchBlock .searchBox{
    margin-bottom: 15px;
  }
  .pageLeft .searchBlock .searchBox form{
    text-align: center;
  }
  .pageLeft .searchBlock .searchBox p{
    font-size: 12px;
    margin-bottom: 5px;
  }
  .pageLeft .searchBlock select{
    font-size: 11px;
    padding:10px ;
    margin-bottom: 15px;
    background: url(./images/ico_bottom_yellow.svg) 95% center no-repeat;
    background-size: 10px auto;
  }
  .pageLeft .btn{
    max-width: 305px;
    margin: 0 auto;
    margin-top: 5px;
  }
  .pageLeft input{
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.875em;
  }
  .pageRight{
    width: 100%;
  }
  .productsFlex  {
    margin-bottom: 0px;
  }
  .productsFlex .productsSet {
    width: 100%;
    margin-bottom: 30px;
  }
  .productsFlex .productsSet figure {
    border-radius: 20px;
    border: 3px solid #000;
    margin-bottom: 15px;
  }
  .productsFlex .productsSet figure img{
    border-radius: 20px;
  }
  .productsFlex .productsSet figure figcaption {
    font-size:12px ;
    padding:12px 30px ;
    border-radius: 20px 0px 17px 0px;
  }
  .productsFlex .productsSet p.name {
    margin-bottom: 10px;
  }
  .productsFlex .productsSet p.price {
    font-size: 24px;
  }
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* terms */

/* .header{
  background: #fff !important;
} */
.terms{
  background: #FBFBF9;
  width: 100%;
  padding-top: 136px;
}
.terms__inner{
  width: 90%;
  padding: 100px 0px 0px;
  margin: 0 auto;
  max-width: 1080px;
}
.terms__inner .ttlBox{
  max-width: 1080px;
}
.terms__inner .subBox{
  margin-bottom: 60px;
}
.terms__inner .termsSet{
  margin-bottom: 60px;
}
.terms__inner .termsSet:last-child{
  margin-bottom: 0px;
}
.terms__inner .termsSet .ttlBox{
  display: block;
  margin-bottom: 20px;
  padding: 10px 0px 10px 20px;
  border-bottom: 2px solid #000;
  background: url(./images/ico_circle_yellow.svg) left center no-repeat;
  background-size:10px auto ;
}
.terms__inner .termsSet .ttlBox h3{
  font-size: 16px;
  line-height: 1.875em;
  color: #000;
  font-weight: 700;
}
.terms__inner .termsSet p.first{
  margin-bottom: 10px;
}
.terms__inner .termsSet p.last{
  margin-top: 10px;
}
.terms__inner .termsSet ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-bottom: 3px;
  padding-left: 2.6em;
  text-indent: -2.6em;
}
.terms__inner .termsSet ul li:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .terms{
    padding-top: 50px;
  }
  .terms__inner{
    width: 90%;
    padding: 30px 0px 0px;
  }
  .terms__inner .subBox{
    margin-bottom: 30px;
  }
  .terms__inner .termsSet{
    margin-bottom: 30px;
  }
  .terms__inner .termsSet .ttlBox{
    display: block;
    margin-bottom: 15px;
    padding: 8px 0px 8px 16px;
    background-size:8px auto ;
  }
  .terms__inner .termsSet .ttlBox h3{
    font-size: 13px;
    line-height: 1.84em;
  }
  .terms__inner .termsSet ul li{
    font-size: 13px;
    line-height: 1.84em;
    margin-bottom: 3px;
  }
}

