@charset "UTF-8";

/*
Theme Name: PAI-R
*/


/*------------------------------------------------------------
  var
------------------------------------------------------------*/
:root {
  --height-sp: 60px;
  --height-pc: 72px;
}

/*------------------------------------------------------------
  Reset
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}

body {
line-height: 1;
}

ol, ul, li {
list-style: none;
}

strong {
font-weight: bold;
}

a:focus {
outline: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

body {
-webkit-text-size-adjust: none;
}


/* 全体の設定
---------------------------------------------------------------------------*/
* {
box-sizing: border-box;
}

html {
overflow-y: scroll;
}

body {
background: #f1f1f1;
}

body, input, select, textarea {
color: #263238;
font-size: 16px;
font-family: 'Noto Sans JP', sans-serif !important;
line-height: 1.6;
}

a {
color: #263238;
text-decoration: none;
}

a:hover {
color: #f45b69;
}

a img:hover {
opacity: 0.70;
}

em, i {
font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
color: #263238;
font-weight: 400;
margin: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: inherit;
border: 0;
}

button {
margin: 0;
padding: 0;
border: none;
border-radius: 0;
background: none;
-webkit-appearance: none;
}

.clear {
clear: both;
}

.cf:after {
content: "."; 
display: block;
height: 0; 
clear: both; 
visibility: hidden;
font-size:0.1em;
line-height:0;
}

.pc {
display: block;
}

.sp {
display: none;
}



/* レイアウト PC
---------------------------------------------------------------------------*/
#wrapper {
width: 100%;
margin-left: auto;
margin-right: auto;
}
.inner {
max-width: 1280px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 992px) {
  #wrapper {
    margin-top: var(--height-pc);
  }
}
@media (max-width: 991px) {
  #wrapper {
    margin-top: var(--height-sp);
  }
}

/*------------------------------------------------------------
  ヘッダ
------------------------------------------------------------*/
.p-header {
  position:fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  transition: transform .5s;
}
.p-header__inner {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.h1-logo {
  width: 120px;
}
.h1-logo a {
  display: block;
}
.h1-logo img {
  max-width: 100%;
  height: auto;
}
.p-header-nav {
  position: relative;
}
.p-header-nav a {
  transition: color .2s ease-in;
}
.p-header-nav__head,
.p-header-nav__itemLink {
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.p-header-nav__head:hover,
.p-header-nav__itemLink:hover {
  color: #63bcb8;
}
.p-header-nav__childLink:hover {
  color: #63bcb8;
}
.p-header-nav__primaryLink:hover {
  color: #63bcb8;
}
/* js用 */
#js-header[data-hidden="true"] {
  transform: translateY(-100%);
}

@media screen and (max-width: 991px) {
  .p-header {
    height: var(--height-sp);
  }
  .p-header__inner {
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 5px 10px;
  }
  .h1-logo {
    padding: 5px 0 0;
  }
  .p-header__nav {
    display: none;
    position: absolute;
    top: var(--height-sp);
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
  }
  .p-header-nav {
    flex-direction: column;
    border-top: 1px solid #ddd;
  }
  .p-header-nav__item {
    border-bottom: 1px solid #ddd;
  }
  .p-header-nav__head {
    cursor: pointer;
  }
  .p-header-nav__head,
  .p-header-nav__itemLink {
    padding: .75em 1em;
  }
  .p-header-nav__item {
    position: relative;
  }
  .p-header-nav__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
  }
  .p-header-nav__btn::before {
    content: "";
    position: absolute;
    top: 1em;
    z-index: 2;
    right: 17px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #263238;
    border-right: 2px solid #263238;
    transform: rotate(45deg);
    transition: transform .3s;
  }
  .js-headerAccordion.is-open .p-header-nav__btn::before {
    transform: rotate(-135deg) translate(-3px, -3px);
  }  
  .p-header-nav__dropdown {
    display: none;
    padding: 1em 1em 1em 2em;
    background:rgba(99,188,184,0.12);
  }
  .p-header-nav__primaryLink {
    display: block;
    color: #63bcb8;
  }
  .p-header-nav__primary + .p-header-nav__child {
    padding-top: 1em;
  }
  .p-header-nav__child + .p-header-nav__child {
    padding-top: .5em;
  }
  .p-header-nav__childHead {
    font-size: 11px;
    font-weight: 500;
  }
  .p-header-nav__childLink {
    display: block;
    padding: .5em 0;
    color: #63bcb8;
    text-decoration: none;
  }
  
  /* menu-btn */
  .menu-btn {
    position:relative; 
    width: 30px;
    z-index:9999;
    cursor: pointer;
  }
  .menu-btn,
  .menu-btn span {
    display: block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .menu-bar {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 10px;
  }
  .menu-bar::before,
  .menu-bar::after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #263238;
    transition: left .2s ease-in, transform .3s ease-in;
  }
  .menu-bar::before { top:0; }
  .menu-bar::after { bottom:0; }

  .menu-btn.is-open .menu-bar::before {
    -webkit-transform:translateY(4px) rotate(-45deg);
    transform:translateY(4px) rotate(-45deg);
  }
  .menu-btn.is-open .menu-bar::after {
    width:30px;
    -webkit-transform:translateY(-4px) rotate(45deg);
    transform:translateY(-4px) rotate(45deg);
  }
  .menu-btn .label {
    margin: 0 0 8px;
    color: #263238;
    text-align: center;
    line-height: 1;
    font-size: 10px;
    letter-spacing: -0.05em;
    white-space:nowrap;
    font-family: sans-serif;
  }
}

@media screen and (min-width: 992px) {
  .p-header {
    height: var(--height-pc);
  }
  .p-header__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 10px 20px;
  }
  .h1-logo {
    width: 140px;
  }
  .p-header__nav {
    width: calc(100% - 140px);
    padding: 0 0 0 20px;
  }
  .p-header-nav {
    display: flex;
    justify-content: space-between;
  }
  .p-header-nav__head {
    cursor: pointer;
  }
  .p-header-nav__head,
  .p-header-nav__itemLink {
    padding: 5px;
    font-size: 14px;
  }
  .p-header-nav__dropdown {
    position: absolute;
    top: 100%;
    z-index: 99;
    background: #ecf7f6;
    margin: 0 0 0 -1.2em;
    padding: 1em 1.25em;
    opacity: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / .2);
    pointer-events: none;
    transition: opacity .2s ease-in;
  }
  .p-header-nav__item:hover .p-header-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
  }
  .p-header-nav__primary + .p-header-nav__child {
    padding-top: 1em;
  }
  .p-header-nav__child + .p-header-nav__child {
    padding-top: .5em;
  }
  .p-header-nav__childHead {
    margin: 0 0 -.3em;
    font-size: 12px;
    font-weight: 500;
    opacity: .5;
  }
  .p-header-nav__childLink {
    display: block;
    padding: .5em 0;
    line-height: 1.4;
    font-size: 15px;
  }
  .p-header-nav__primaryLink {
    font-size: 15px;
    font-weight: 500;
  }
  .p-header-nav__pc-hide {
    display: none;
  }
  .menu-btn {
    display:none;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__nav {
    padding: 0 0 0 60px;
  }
  .p-header-nav__head,
  .p-header-nav__itemLink {
    font-size: 15px;
  }
}

/*------------------------------------------------------------
  フッタ
------------------------------------------------------------*/
.p-footer {
  color: #fff;
  font-size: 14px;
}
.p-footer a {
  color: #fff;
  transition: color .2s ease-in;
}
.p-footer a:hover {
  color: rgb(255 255 255 / .3);
}
.p-footer-inner {
  max-width: calc(1120px + 4% * 2);
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
}
.p-footer__primary {
  display: none;
  padding: 50px 0;
  background: #37474f;
  width: 100%;
}
.p-footer__secondary {
  background: #263238;
  padding-top: 50px;
  padding-bottom: 20px;
}
.p-footer-nav-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-footer-nav-column__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-footer-nav-head {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
}
.p-footer-nav-head + .p-footer-nav-head {
  padding-top: 10px;
}
.p-footer-nav-child__head {
  font-size: 11px;
  font-weight: 500;
}
.p-footer-nav-child__nav {
  display: grid;
  gap: 5px;
  padding: 4px 0 0;
}
.p-footer-nav-child + .p-footer-nav-child {
  padding-top: 5px;
}
.p-footer-sub-nav {
  display: grid;
  gap: 15px;
}
.p-footer-info-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.p-footer-info-column__item {
  flex-grow: 1;
}
.p-footer-info-column__item--copyright {
  width: 100%;
}
.p-footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-footer-info__company {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-footer-info__companyLogo {
  width: 50px;
}
.p-footer-info__companyName {
  flex-grow: 1;
  line-height: 1.25;
  padding: 0 0 0 10px;
  font-size: 20px;
}
.p-footer-info__companySupport {
  width: 100%;
}
.p-footer-info__relation {
  display: flex;
  gap: 10px;
}
.p-footer-info__relation img {
  max-width: 100%;
}
.p-footer-location {
  display: grid;
  gap: 20px;
}
.p-footer-location__head {
  margin: 0 0 8px 0;
  padding: 0 0 6px 0;
  border-bottom: 1px solid #fff;
}
.p-footer-others-menu {
  display: flex;
  flex-wrap: wrap;
}
.p-footer-others-menu__item {
  margin-right: calc(40px * (1 - .75) * -1);
  margin-bottom: calc(40px * (1 - .75) * -1);
}
.p-footer-others-menu__link {
  display: inline-block;
  padding: 5px 0;
  font-size: 16px;
  transform: scale(.75);
  transform-origin: top left;
}
.p-footer-copyright {
  display: block;
}
@media screen and (min-width: 576px) {
  .p-footer-info {
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .p-footer-location {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-footer-info__company {
    width: 48%;
  }
  .p-footer-info__relation {
    flex-grow: 1;
  }
  .p-footer-info__companySupport {
    width: 100%;
    font-size: 16px;
  }
  .p-footer-location {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .p-footer-location__head {
    margin: 0 0 8px 0;
    padding: 0 0 6px 0;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__primary {
    display: block;
  }
  .p-footer-info-column__item--info { width: 32%; }
  .p-footer-info-column__item--location { width: 50%; }

  .p-footer-info__company {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer-info-column__item--copyright {
    width: auto;
  }
  .p-footer-copyright {
    text-align: right;
  }
}

/*------------------------------------------------------------
  ページトップ
------------------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 100;
}
#pagetop img {
  width: 50px;
  height: auto;
  transition: opacity .2s ease-in;
}
#pagetop img:hover {
  opacity: .8;
}
@media screen and (min-width: 992px) {
  #pagetop {
    right: 24px;
    bottom: 32px;
  }
  #pagetop img {
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #pagetop {
    right: 30px;
    bottom: 40px;
  }
}

/* コンテンツ PC
---------------------------------------------------------------------------*/

/*  パーツ PC  */

.balloon1 {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #f1f1f1;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon1:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon1 p {
margin: 0;
padding: 0;
text-align: center;
}

.balloon1b {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #fff;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1b:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #fff;
z-index: 2;
}

.balloon1b:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 {
position: relative;
display: block;
margin: 0 auto 40px;
padding: 7px 10px;
width: 540px;
color: #fff;
background: #F45B69;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon2:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #F45B69;
z-index: 2;
}

.balloon2:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 p {
margin: 0;
padding: 0;
font-size: 36px;
font-weight: bold;
text-align: center;
}

.balloon3 {
position: relative;
display: block;
margin: 0 auto 80px;
padding: 20px 10px;
min-width: 320px;
max-width: 60%;
background: #f1f1f1;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon3:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon3:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon3 h2 {
color: #F45B69;
font-size: 30px;
font-weight: bold;
text-align: center;
}

.btn01 {
max-width: 500px;
margin: 0 auto;
font-size: 21px;
text-decoration: none;
text-align: center;
color: #fff;
background: #263238;
border-radius: 36px;
-webkit-border-radius: 36px;
-moz-border-radius: 36px;
}

.btn01 a {
display: block;
padding: 20px 0;
color: #fff;
}

.btn01:hover {
background: #263238;
color: #fff;
text-decoration: none;
transition: background .5s ease;
box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
}

.btn01:active {
background: #37474f;
color: #fff;
}

.btn02 {
display: inline-block;
width: 200px;
margin: 5px 5px;
font-size: 15px;
text-decoration: none;
text-align: center;
color: #fff;
background: #263238;
border-radius: 24px;
}

.btn02 a {
display: block;
padding: 10px 0;
color: #fff;
}

.btn02:hover {
background: #263238;
color: #fff;
text-decoration: none;
transition: background .5s ease;
box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
}

.btn02:active {
background: #37474f;
color: #fff;
}

.btn03 {
display: inline-block;
width: 130px;
margin: 5px 10px;
font-size: 14px;
text-decoration: none;
text-align: center;
color: #fff;
background: #fff;
border: 1px solid #f45b69;
border-radius: 22px;
}

.btn03 a {
display: block;
padding: 8px 0;
color: #f45b69;
}

.btn03:hover {
background: #f2bbc5;
color: #fff;
text-decoration: none;
transition: background .5s ease;
}

.btn03:active {
background: #f2bbc5;
color: #fff;
}

.btn04 {
display: inline-block;
width: 280px;
margin: 0 10px;
font-size: 18px;
text-decoration: none;
text-align: center;
color: #fff;
background: #63bcb8;
border-radius: 24px;
}

.btn04 a {
display: block;
padding: 10px 0;
color: #fff;
}

.btn04:hover {
background: #8dcecb;
color: #fff;
text-decoration: none;
transition: background .5s ease;
}

.btn04:active {
background: #37474f;
color: #fff;
}

.submit_button input[type="submit"] {
display: block;
width: 320px;
margin: 0 auto;
padding: 20px 40px;
font-size: 20px;
text-decoration: none;
text-align: center;
color: #fff;
background: #f45b69;
border-radius: 36px;
border: none;
-webkit-appearance: none;
}

.submit_button input[type="submit"]:hover {
background: #f45b69;
box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
filter: alpha(opacity=100);
opacity: 1;
}

input.backbtn {
  display: block;
  width: 320px;
  margin: 20px auto;
  padding: 20px 40px;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
}

.submit_button02 input[type="submit"] {
display: block;
width: 320px;
margin: 0 auto;
padding: 20px 40px;
font-size: 20px;
text-decoration: none;
text-align: center;
color: #fff;
background: #f45b69;
border-radius: 36px;
border: none;
-webkit-appearance: none;
}



/* お知らせ */

.h1title {
background-color: rgba(178, 223, 219, 0.3);
padding: 80px 20px 75px;
font-size: 1.8em;
font-weight: bold;
text-align: center;
line-height: 1.8;
letter-spacing: 0.1em;
}
.h1title span {
margin: 0 10px;
padding: 0 0 6px 0;
border-bottom: 4px solid #63BCB8;
}
.news_block {
display: block;
width: 90%;
margin: 0 auto;
}
.news_list02 {
margin: 0 0 60px;
color: #263238;
font-size: 15px;
line-height: 1.6;
}
.news_list02 dt{
display: flex;
width: 16em;
}
.news_list02 dd {
width: calc(100% - 16em); /* dtのwidthを引く */
padding: 0 0 0 15px;
}
.news_list02 .cat_tit {
margin: 0 0 0 1em;
padding: 2px 5px;
background: #b2dfdb;
width: 140px;
height: 25px;
text-align: center;
font-size: .8em;
font-weight: 500;
}
.news_list02 dd a {
color: #263238;
}
.news_list02 dd a:hover {
color: #f45b69;
}
.news_list02 .news_list_item {
position: relative;
display: flex;
flex-wrap: wrap;
padding: 25px 20px;
}
.news_list02 .news_list_attention {
background: #fff;
}
.news_list02 .news_list_attention + .news_list_attention {
margin-top: 15px;
}
.news_list02 .news_list_attention::before {
content: "\f10d";
position: absolute;
right: 10px;
top: 0px;
color: #f35b69;
font-size: 20px;
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
transform: rotate(45deg);
}
.news_cont {
width: 100%;
text-overflow: ellipsis;
height: auto;
}
.news_box {
margin: 0 auto 60px;
padding: 50px 75px;
border-radius: 8px;
background-color: #fff;
border: 0px solid #b2dfdb;
}
.news_box a {
  color:#63bcb8;
  overflow-wrap: break-word;
}
.news_box a:hover {
  color: #f45b69;
}
.news_box h2.news_tit {
margin: 0 0 20px 0;
padding: 0 0 15px 0;
color: #63bcb8;
font-size: 20px;
font-weight: bold;
border-bottom: 2px solid #63bcb8;
}
.contents .news_box p.date {
width: 100%;
padding: 0 0 45px 0;
text-align: right;
}
.text_green {
color: #63bcb8;
}
.link_nav {
display: block;
margin: 0 auto;
padding: 0;
text-align: center;
}
.link_nav li {
display: inline-block;
margin: 0;
padding: 0;
text-align: center;
vertical-align: middle;
}
.link_nav li.link_nav_l {
 width: 33%;
 padding: 0 1em;
 text-align: right;
 white-space: nowrap;  
 overflow: hidden;  
 text-overflow: ellipsis;  
 -webkit-text-overflow: ellipsis;  
 -o-text-overflow: ellipsis; 
}
.link_nav li.link_nav_r {
 width: 33%;
 padding: 0 1em;
 text-align: left;
 white-space: nowrap;  
 overflow: hidden;  
 text-overflow: ellipsis;  
 -webkit-text-overflow: ellipsis;  
 -o-text-overflow: ellipsis; 
}
.link_nav a {
color: #63bcb8;
}
.link_nav a:hover {
filter: alpha(opacity=70);
opacity: 0.70;
}
.news_cat {
margin: 60px 0 0 0;
}
.news_cat a {
color: #63bcb8;
}
.news_cat a:hover {
filter: alpha(opacity=70);
opacity: 0.70;
}
.center {
text-align: center;
}
.wp-pagenavi {
display: block;
margin: 3em auto 0;
font-size: 90%;
}
.wp-pagenavi a, .wp-pagenavi span {
text-decoration: none;
border: 1px solid #63bcb8;
padding: 3px 8px;
margin: 2px;
}
.wp-pagenavi span.current {
background: #63bcb8;
	color: #fff;
font-weight: bold;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
border-color: #63bcb8;
}


/* よくある質問　送料について */	
.postage {
  margin: 0 auto;
}

.postagetable {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 750px;
  table-layout: fixed;
}
.customercolor {
  background-color: #f35b69;
}
.paircolor {
  background-color: #63bcb8;
}

.postagetable tr {
  background-color: #e6f2f5;
  font-size: 16px;
  border-bottom: 2px solid #fff;
}
.postagetable th,
.postagetable td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
.postagetable th {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  width: 30%;
}
.postagetable thead tr{
  background-color: #167F92;
  color:#fff;
}
.postagetable tbody th {
    background: #bcd8d4;
}
.customer{
   font-size: 16px;
   text-align: center;
   vertical-align: middle;
   background-color: #e6e8e8;
}
.pair{
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  background-color: #e6e8e8;
}
.postagetable .non{
  background:#fff
}
.postagetext {
  font-weight: 600;
}


/* よくある質問　送料について レスポンシブ*/
@media screen and (max-width: 980px) {
  .postagetable {
    border: 0;
    width:100%
  }
  .postagetable th{
    background-color: #167F92;
    display: block;
    border-right: none;
    width: 100%;
  }
  .postagetable thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .postagetable tr {
    display: block;
    margin-bottom: .625em;
  }
  .postagetable td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  .postagetable td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
  }
  .postagetable td:last-child {
    border-bottom: 0;
  }
  .postagetable tbody th {
    background: #7DC4BD;
    color: #fff;
    font-weight: bold;
  }
  .customer{
    font-size: .85em;
    text-align: right;
    vertical-align: middle;
    background-color: #e6e8e8;
  }
  .pair{
  text-align: right;
  vertical-align: middle;
  background-color: #e6e8e8;
  }
}


/* テーブル PC
---------------------------------------------------------------------------*/
table {
border-collapse: collapse;
border-spacing: 0;
}
.tbl01 {
display: block;
width: 860px;
margin: 0 auto;
}
.tbl01 th {
width: 240px;
padding: 30px 0 0;
text-align: right;
vertical-align: top;
font-weight: bold;
border-bottom: 1px dotted #546e7a;
vertical-align: top;
}
.tbl01 td {
width: 600px;
padding: 25px 20px;
vertical-align: top;
border-bottom: 1px dotted #546e7a;
}
.tbl01 .req {
background-color: #f45b69;
margin: 10px 0 0 0.5em;
padding: 2px 4px;
color: #fff;
font-size: 70%;
font-weight: normal;
border-radius: 2px;
line-height: 1.5;
vertical-align: top;
}


/* フォーム PC
---------------------------------------------------------------------------*/
input, button, textarea, select {
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

input,
textarea,
select {
background: #fff;
margin: 0;
padding: 4px 10px;
width: 100%;
font-family: inherit;
-moz-border-radius: 4px; 
-webkit-border-radius: 4px;
border-radius: 4px;
border: 1px solid #999;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
opacity: 0.7;
}

input::-webkit-input-placeholder {
color: #999;
font-weight: normal;
}

input:-ms-input-placeholder {
color: #999;
font-weight: normal;
}

input::-moz-placeholder {
color: #999;
font-weight: normal;
}

.cp_select {
overflow: hidden;
width: 100%;
margin: 0;
text-align: center;
}
.cp_select select {
width: 100%;
padding-right: 1em;
cursor: pointer;
text-overflow: ellipsis;
border: none;
outline: none;
background: transparent;
background-image: none;
box-shadow: none;
-webkit-appearance: none;
appearance: none;
}
.cp_select select::-ms-expand {
display: none;
}
.cp_select.cp_sl01 {
position: relative;
border: 1px solid #999;
border-radius: 4px;
background: #fff;
}
.cp_select.cp_sl01::before {
position: absolute;
top: 50%;
top: calc(50% - 3px );
right: 0.9em;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #546e7a;
pointer-events: none;
}

.btn-submit input[type="submit"] {
display: block;
width: 320px;
margin: 0 auto;
padding: 20px 40px;
font-size: 20px;
text-decoration: none;
text-align: center;
color: #fff;
background: #f45b69;
border-radius: 36px;
-webkit-border-radius: 36px;
-moz-border-radius: 36px;
border: none;
-webkit-appearance: none;
}

.contents {
max-width: 1120px;
margin: 0 auto;
padding: 100px 40px;
}
.form_top {
background: rgba(178,223,219,0.3);
width: 100%;
padding: 30px 0 40px;
border-radius: 8px;
margin: 0 auto;
text-align: center;
line-height: 1.8em;
}
.form_top_h {
margin: 0 0 15px 0;
color: #63bcb8;
font-size: 20px;
font-weight: bold;
}
.form_area {
display: block;
width: 860px;
margin: 0 auto;
}
.form_area .req {
background-color: #f45b69;
margin: 10px 0 0 0.5em;
padding: 2px 4px;
color: #fff;
font-size: 70%;
font-weight: normal;
border-radius: 2px;
line-height: 1.5;
vertical-align: top;
}
.comments {
margin: 10px 0 0 0;
font-size: 15px;
line-height: 1.6em;
text-align: justify;
}
.form_area table {
margin: 0 auto;
}
.form_area th {
padding: 30px 0 0;
text-align: right;
vertical-align: top;
border-bottom: 1px dotted #546e7a;
}
.form_area td {
padding: 25px 20px;
vertical-align: top;
width: 75%;
border-bottom: 1px dotted #546e7a;
}
.form_area .table_item {
width: 220px;
padding-right: 5px;
line-height: 1;
}
.form_area input[type="text"] {
width: 100%;
padding: 4px 10px;
border: 1px solid #999999;
border-radius: 4px;
}
.form_area input[type=radio] {
margin: 5px;
}
.form_area label {
padding: 2px 0px;
}
.form_area textarea {
width: 100%;
padding: 4px 10px;
border: 1px solid #999999;
border-radius: 4px;
}
.support_form_radio div {
display: block;
margin: 0 5px 5px;
text-align: left;
}
.attention {
max-width: 780px;
text-align: justify;
line-height: 1.8em;
margin: 60px auto 90px;
}
.attention2 {
display: inline-block;
margin: 30px 0px;
padding: 5px 30px;
background-color: #EFEFEF;
border-radius: 100px;
}
.attention a {
color: #63bcb8;
}
.attention_link a {
color: #63bcb8;
}
.attention_link a:hover {
color: #8dcecb;
}
.mail_send {
line-height: 1.5em;
}
.radio-input {
display: none;
}
.radio-input+label {
padding-left: 24px;
position: relative;
margin: 0;
}
.radio-input+label::before {
content: "";
display: block;
position: absolute;
top: 3px;
left: 0;
width: 15px;
height: 15px;
border: 1px solid #999;
border-radius: 50%;
}
.radio-input+label::after {
content: "";
display: block;
position: absolute;
top: 6px;
left: 3px;
width: 11px;
height: 11px;
background: #ccc;
border-radius: 50%;
}
.radio-input:checked+label::after {
content: "";
display: block;
position: absolute;
top: 6px;
left: 3px;
width: 11px;
height: 11px;
background: #f45b69;
border-radius: 50%;
}	

/*　w_box
---------------------------------------------------------------------------*/
.w_box {
  margin: 0 auto 90px;
  padding: 60px 140px;
  border-radius: 8px;
  background-color: #fff;
}
.w_box p.topic {
  color: #f45b69;
}
.w_box p {
  font-size: 15px;
}
.w_box .list {
  margin: 0 0 20px 0;
}
.w_box .list li {
  display: inline-block;
  margin: 5px 2em 5px 0;
}
@media screen and (max-width: 799px) {
  .w_box {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 639px) {
  .w_box {
    padding: 40px 25px;
  }
}


/*　その他 PC
---------------------------------------------------------------------------*/
.page_scroll > a {
display: block; 
padding-top: 110px; 
margin-top: -110px;
}

input::-webkit-input-placeholder {
color: #999;
font-size: 90%;
font-weight: normal;
}
input:-ms-input-placeholder {
color: #999;
font-size: 90%;
font-weight: normal;
}
input::-moz-placeholder {
color: #999;
font-size: 90%;
font-weight: normal;
}

.mt05 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt60 {margin-top: 60px;}
.mt80 {margin-top: 80px;}
.mt90 {margin-top: 90px;}
.mt120 {margin-top: 120px;}
.mb1 {margin-bottom: 1em;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb80 {margin-bottom: 80px;}
.mb100 {margin-bottom: 100px;}
.mb120 {margin-bottom: 120px;}
.ml6 {margin-left: 6%;}
.ml7 {margin-left: 7%;}
.ml8 {margin-left: 8%;}
.ml17 {margin-left: 17%;}
.pl3 {padding-left: 3%;}
.pl5 {padding-left: 5%;}
.pr5 {padding-right: 5%;}
.pr7 {padding-right: 7%;}




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

body, input, select, textarea {
font-size: 15px;
line-height: 1.5;
}

.inner {
width: 92%;
margin-left: auto;
margin-right: auto;
}


/* コンテンツ TAB
---------------------------------------------------------------------------*/

/*  パーツ TAB */

.balloon1 {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #f1f1f1;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon1:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon1 p {
margin: 0;
padding: 0;
text-align: center;
}

.balloon1b {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #fff;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1b:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #fff;
z-index: 2;
}

.balloon1b:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 {
position: relative;
display: block;
margin: 0 auto 40px;
padding: 7px 10px;
width: 70%;
color: #fff;
background: #F45B69;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon2:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #F45B69;
z-index: 2;
}

.balloon2:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 p {
margin: 0;
padding: 0;
font-size: 36px;
font-weight: bold;
text-align: center;
}

.balloon3 {
position: relative;
display: block;
margin: 0 auto 48px;
padding: 20px 10px;
min-width: 600px;
max-width: 75%;
background: #f1f1f1;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon3:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon3:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon3 h2 {
color: #F45B69;
font-size: 30px;
font-weight: bold;
text-align: center;
}

.btn01 {
max-width: initial;
width: 540px;
margin: 0 auto;
font-size: 21px;
text-decoration: none;
text-align: center;
color: #fff;
background: #263238;
border-radius: 28px;
-webkit-border-radius: 28px;
-moz-border-radius: 28px;
}

.btn01 a {
display: block;
padding: 12px 0;
color: #fff;
}

.contents {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 0;
}


/*　その他 TAB
---------------------------------------------------------------------------*/

.mt10 {margin-top: 8px;}
.mt40 {margin-top: 32px;}
.mt60 {margin-top: 48px;}
.mt80 {margin-top: 64px;}
.mt90 {margin-top: 20px;}
.mt120 {margin-top: 96px;}
.mb20 {margin-bottom: 16px;}
.mb30 {margin-bottom: 24px;}
.mb40 {margin-bottom: 32px;}
.mb50 {margin-bottom: 40px;}
.mb60 {margin-bottom: 48px;}
.mb80 {margin-bottom: 64px;}
.mb100 {margin-bottom: 80px;}
.mb120 {margin-bottom: 96px;}
.ml6 {margin-left: 6%;}
.ml7 {margin-left: 6%;}
.ml8 {margin-left: 6%;}
.ml17 {margin-left: 5%;}
.pl3 {padding-left: 3%;}
.pl5 {padding-left: 0%;}
.pr5 {padding-right: 0%;}
.pr7 {padding-right: 0%;}

}



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

body, input, select, textarea {
font-size: 14px;
line-height: 1.5;
}

.pc {
display: none;
}

.sp {
display: block;
}

/* コンテンツ SP
---------------------------------------------------------------------------*/

/*  パーツ SP */

.balloon1 {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #f1f1f1;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon1:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon1 p {
margin: 0;
padding: 0;
text-align: center;
}

.balloon1b {
position: relative;
display: block;
margin: 1.5em auto;
padding: 10px 10px;
width: 320px;
color: #F45B69;
font-size: 24px;
font-weight: bold;
text-align: center;
background: #fff;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon1b:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #fff;
z-index: 2;
}

.balloon1b:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 {
position: relative;
display: block;
margin: 0 auto 40px;
padding: 7px 10px;
width: 100%;
color: #fff;
background: #F45B69;
-moz-border-radius: 45px; 
-webkit-border-radius: 45px;
border-radius: 45px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon2:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #F45B69;
z-index: 2;
}

.balloon2:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon2 p {
margin: 0;
padding: 0;
font-size: 36px;
font-weight: bold;
text-align: center;
}

.balloon3 {
position: relative;
display: block;
margin: 0 auto;
padding: 10px 5px;
min-width: initial;
max-width: 100%;
background: #f1f1f1;
-moz-border-radius: 60px; 
-webkit-border-radius: 60px;
border-radius: 60px; 
border: solid 2px #F45B69;
box-sizing: border-box;
}

.balloon3:before {
content: "";
position: absolute;
bottom: -24px;
left: 50%;
margin-left: -14px;
border: 12px solid transparent;
border-top: 12px solid #f1f1f1;
z-index: 2;
}

.balloon3:after {
content: "";
position: absolute;
bottom: -29px;
left: 50%;
margin-left: -16px;
border: 14px solid transparent;
border-top: 14px solid #F45B69;
z-index: 1;
}

.balloon3 h2 {
color: #F45B69;
font-size: 27px;
font-weight: bold;
text-align: center;
}

.btn01 {
max-width: initial;
width: 90%;
margin: 0 auto;
font-size: 21px;
text-decoration: none;
text-align: center;
color: #fff;
background: #263238;
border-radius: 28px;
-webkit-border-radius: 28px;
-moz-border-radius: 28px;
}

.btn01 a {
display: block;
padding: 12px 0;
color: #fff;
}
.h1title {
  background-color: rgba(178,223,219,0.3);
  font-size: 1.4em;
  padding: 40px 20px 36px;
  text-align: center;
}
.h1title span {
  padding: 0 0 1px;
  border-bottom: 3px solid #63BCB8;
}


/* お知らせ */


.news_block {
display: block;
width: 100%;
margin: 0 auto;
}
.news_list02 {
width: 100%;
margin: 0 auto;
color: #263238;
font-size: 15px;
line-height: 1.66;
overflow:auto;
}
.news_list02 dt{
width: 100%;
}
.news_list02 dd {
width: 100%;
padding: 10px 0 0;
}
.news_list02 dd .cat_tit {
  margin: 0 20px 0 0;
  padding: 2px 12px;
  background: #b2dfdb;
  height: 28px;
  line-height: 13px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_list02 dd a {
color: #263238;
}
.news_list02 dd a:hover {
color: #f45b69;
}
.news_list02 .news_list_item {
padding: 15px;
}
.news_list02 .news_time {
font-size: 13px;
}
.news_cont{
  height: auto;
}
.news_box {
margin: 0 auto 60px;
padding: 30px 30px;
border-radius: 8px;
background-color: #fff;
border: 0px solid #b2dfdb;
}
.news_box h2.news_tit {
margin: 0 0 20px 0;
padding: 0 0 15px 0;
color: #63bcb8;
font-size: 20px;
font-weight: bold;
border-bottom: 2px solid #63bcb8;
}
.contents .news_box p.date {
width: 100%;
padding: 0 0 36px 0;
text-align: right;
}
.news_box img {
width: 100%;
height: auto;
}
.text_green {
color: #63bcb8;
}
.link_nav {
display: block;
margin: 0 auto;
padding: 0;
text-align: center;
}
.link_nav li {
display: inline-block;
margin: 0;
padding: 0;
text-align: center;
vertical-align: middle;
}
.link_nav li.link_nav_l {
 width: 30%;
 padding: 0 0.5em;
 text-align: right;
 white-space: nowrap;  
 overflow: hidden;  
 text-overflow: ellipsis;  
 -webkit-text-overflow: ellipsis;  
 -o-text-overflow: ellipsis; 
}
.link_nav li.link_nav_r {
 width: 30%;
 padding: 0 0.5em;
 text-align: left;
 white-space: nowrap;  
 overflow: hidden;  
 text-overflow: ellipsis;  
 -webkit-text-overflow: ellipsis;  
 -o-text-overflow: ellipsis; 
}
.news_cat {
margin: 48px 0 0 0;
}

.download-btn a{
  display: block;
  width: 320px;
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: #f45b69;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border: none;
  -webkit-appearance: none;
  }
  
.download-btn a:hover {
  background: #f45b69;
  -moz-box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
  -webkit-box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
  box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
  filter: alpha(opacity=100);
  opacity: 1;
  }


/*　その他 SP
---------------------------------------------------------------------------*/
input{ font-size:16px; }

.mt10 {margin-top: 6px;}
.mt40 {margin-top: 24px;}
.mt60 {margin-top: 36px;}
.mt80 {margin-top: 48px;}
.mt90 {margin-top: 20px;}
.mt120 {margin-top: 72px;}
.mb20 {margin-bottom: 12px;}
.mb30 {margin-bottom: 18px;}
.mb40 {margin-bottom: 24px;}
.mb50 {margin-bottom: 30px;}
.mb60 {margin-bottom: 36px;}
.mb80 {margin-bottom: 48px;}
.mb100 {margin-bottom: 60px;}
.mb120 {margin-bottom: 72px;}
.ml6 {margin-left: 5%;}
.ml7 {margin-left: 5%;}
.ml8 {margin-left: 5%;}
.ml17 {margin-left: 5%;}
.pl3 {padding-left: 0%;}
.pl5 {padding-left: 0%;}
.pr5 {padding-right: 0%;}
.pr7 {padding-right: 0%;}

}


/*IT点呼CV*/
.cv_itsp{
  width: 80%;
}
.it_left{
  width: 250px;
  background: #FFF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 5px;
  padding: 10px;
  height: fit-content;
}
.it_left img{
  width: 230px;
  margin: 0 auto;
}
.it_left p{
  text-align: center;
}
.it_small{
  font-size: small;
  margin-bottom: 7px;
}
.btnit{
  background: #F35B69;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 20px;
  margin: 10px auto;
  cursor: pointer;
}
.btnit a{
  color: #FFF;
}
.btnit:hover{
  background: #F45B69;
  box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
  text-decoration: none;
  transition: background .5s ease;
}
.it_bold{
  font-weight: bold;
}
.it_tel{
  font-size: 1.2em;
  font-weight: bold;
}
.cv_itsp{
  padding: 5px 10px;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 20px;
  width: 80%;
  z-index: 999;
}
.it_sp{
  width: 100%;
  background: #8CCFCA;
  border: 1px solid #263238;
  padding: 20px 5px;
  border-radius: 5px;
  cursor: pointer;
}
.it_sp:hover{
  background: #B7E1DE;
  box-shadow: 0px 4px 4px rgba(38,50,56,0.4);
  text-decoration: none;
  transition: background .5s ease;
}
.it_sp a{
  font-weight: bold;
  color: #263238;
}
.bord_bt{
  border-bottom: 1px solid  #263238;
  font-weight: bold;
}
.add-control {
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
}
@keyframes fadein {
from {
  opacity: 0;
  transform: translateY(30px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}
/*IT切替*/
.sp_dis {
display:none!important;
}
@media only screen and (max-width: 768px){
.pc_dis {
  display:none!important;
}

.sp_dis {
  display:block!important;
}
}

/*閉じるボタン*/
.add-control{
position: fixed;
  bottom: 5px;
  left: 5px;
  z-index:1000 ;
}
.it_btn {
color: #fff;
  background: #F35B69;
padding: 1px 4px;
  border-radius: 1em;
  text-align: center;
}
.it_btn:hover {
  cursor: pointer;    
}
.it_btn:active {
  background:#F35B69;
}
/* radio non-display */
.add-control .radio{
  display: none;
}
/* button control */
.add-control #close:checked ~ .btn-close {
  display: none;
}
.add-control #close:checked ~ .btn-open {
  display: table;
}
.add-control #open:checked ~ .btn-close {
  display: table;
}
.add-control #open:checked ~ .btn-open {
  display: none;
}
/* content control */
.add-control #close:checked ~ .it_box {
  display: none;
}
.add-control #open:checked ~ .it_box {
  display: block;
}
label.it_btn.btn-open {
display: block;
  padding: 20px 30px;
  border-radius: 0px 35px 35px 0px;
  font-weight: bold;
}
label.it_btn.btn-close {
  z-index: 1001;
  position: absolute;
  bottom: 360px;
  left: 230px;
}
/*IT点呼ここまで*/


/*検索結果pagination*/
.nav-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 80px 0px 0px;
  text-align: center;
}
.page-numbers {
  width: 50px;
  height: 50px;
  line-height: 48px;
  margin: 10px 5px 0;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 18px;
}
.page-numbers.current {
  font-weight: bold;
  color: #ffffff;
  background: #63bcb8;
  border-color: #63bcb8;
}
.page-numbers.dots {
  border: none;
}
.prev.page-numbers,
.next.page-numbers{
  width: auto;
  border: none;
}
a.page-numbers:hover{
  border-color: #F35B69;
}

@media screen and (max-width: 575px) {
  .nav-links {
    padding: 0 0 60px;
  }
  .prev.page-numbers,
  .next.page-numbers {
    position: absolute;
    bottom: 0;
  }
  .prev.page-numbers {
    left: 0;
  }
  .next.page-numbers {
    right: 0;
  }
}
@media screen and (max-width: 391px) {
  .f_info_block .jqa {
    width: 64px;
  }
  .f_info_block .j-bac {
    left: 64px;
    width: 80px;
  }
  .f_info_block .s_action {
    left: 155px;
    width: 60px;
  }

}


/*お知らせカテゴリ表示*/
.info_catename {
  font-size: 1.3em;
  font-weight: bold;
  color: #63bcb8;
  margin-bottom: 30px;
  text-decoration: underline solid;
}
dl.info_post {
  margin-bottom: 30px;
}
dd.info_catetit {
  margin-bottom: 35px;
  text-indent: 2em;
}
dt.info_cateday {
  float: left;
}



/*------------------------------------------------------------
  よくある質問
------------------------------------------------------------*/
.faq-contents {
  max-width: 1040px;
  padding-top: 50px;
}
.faq-image {
  max-width: 100%;
  height: auto;
}
.faq-search {
  display: grid;
  gap: 30px;
}
.faq-search-keyword {
  background: #deebea;
}
.faq-search-keyword__input {
  padding: 0 20px 10px;
}
.faq-search-keyword__input .submit_button03 {
  display: inline-block;
  width: 100%;
  margin: 10px 0 0;
  text-align: center;
}
.faq-search-keyword__input .submit_button03 input[type="submit"] {
  display: inline-block;
  width: 144px;
  margin: 0 auto;
  padding: 8px 20px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: #263238;
  border-radius: 36px;
  border: none;
  -webkit-appearance: none;
}
.faq-search-keyword__input input[type="text"] {
  padding: 8px 10px;
  transition: border .2s;
}
.faq-search-keyword__input input[type="text"]:focus {
  box-shadow: 0 0 4px rgb(0 0 0 / .1) inset;
  border-color: #263238;
}
.faq-search-title {
  padding: 15px 10px 15px 55px;
  background: #deebea url(img/common/search_btn.png) no-repeat 15px 50% / 36px auto;
  font-size: 16px;
  font-weight: 500;
}
.faq-search-category {
  display: grid;
  gap: 20px;
}
.faq-search-category-list {
  display: grid;
  row-gap: 15px;
  grid-template-columns: repeat(2,1fr);
}
.faq-search-category-list__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #63bcb8;
  text-align: center;
}
.faq-search-category-list__item:nth-child(2n+1) {
  border-left: 1px solid #63bcb8;
}
.faq-search-category-list__item a {
  padding: 5px 10px;
}
.faq-search-category-list__item a:hover {
  color: #263238;
}
.faq-search-category-list__item a span {
  position: relative;
  display: inline-block;
}
.faq-search-category-list__item a span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin: 0 auto;
  width: 0;
  border-bottom: 3px solid #b2dfdb;
  transform: translateX(-50%);
  transition: width .3s ease;
}
.faq-search-category-list__item a:hover span::after {
  width: 100%;
}
.ans a {
  color: #63bcb8;
}
h2.faq_tit {
  margin: 40px 0 30px;
  color: #63bcb8;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
h2.faq_tit span {
  background: url("./img/common/ques.png") no-repeat;
  background-position: 0% 50%;
  background-size: 44px 44px;
  height: 44px;
  padding: 4px 0 4px 50px;
}
h2.faq_tit02 {
  background: url("./img/common/ques.png") no-repeat;
  background-position: 0% 50%;
  background-size: 50px auto;
  min-height: 50px;
  padding: 10px 0 10px 55px;
  color: #63bcb8;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
h2.faq_tit03 {
  margin: 0 0 30px;
  color: #63bcb8;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.faq_box {
  margin: 30px auto 60px;
  padding: 30px 15px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #b2dfdb;
}
.faq_box .ans {
  background: url("./img/common/ans.png") no-repeat;
  background-position: 0% 0%;
  background-size: 50px auto;
  padding: 15px 0 0 55px;
}
.faq_list {
  margin: 30px 0 40px;
}
.faq_list li {
  background: #fff url("./img/common/bod.jpg") no-repeat;
  background-position: 8px 50%;
  background-size: 10px 36px;
  width: 100%;
  margin: 0 0 15px 0;
  border-radius: 4px;
  border: 1px solid #b2dfdb;
}
.faq_list li span {
  margin: 5px 0;
  padding: 0;
}
.faq_list li a { 
  display: block;
  padding: 15px 15px 15px 30px;
  color: #263238;
}
.faq_list li a:hover { 
  color: #f45b69;
}
.faq_list02 {
  background: #fff url("./img/common/bod.jpg") no-repeat;
  background-position: 8px 50%;
  background-size: 10px 36px;
  width: 100%;
  margin: 0 0 15px 0;
  padding: 15px 15px 15px 30px;
  border-radius: 4px;
  border: 1px solid #b2dfdb;
}
.faq_list02 span {
  margin: 5px 0;
  padding: 0;
}
.faq_cat {
  margin: 60px 0 0 0;
}
.faq_cat a {
  color: #63bcb8;
}
.faq_cat a:hover {
  filter: alpha(opacity=70);
  opacity: 0.70;
}
h3.search_tit02 {
  margin: 0 0 20px 0;
  padding: 0 0 15px 0;
  color: #63bcb8;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #63bcb8;
}
@media screen and (min-width: 576px) {
  .faq-search-keyword {
    display: grid;
    grid-template-columns: min(240px, 38%) auto;
    align-items: center;
  }
  .faq-search-keyword__input {
    padding: 10px 10px 10px 0;
  }
  .faq-search-keyword__input form {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .faq-search-keyword__input .submit_button03 {
    margin: 0;
    text-align: left;
  }
  .faq-search-category-list {
    grid-template-columns: repeat(3,1fr);
  }
  .faq-search-category-list__item:nth-child(2n+1) {
    border-left: none;
  }
  .faq-search-category-list__item:nth-child(3n+1) {
    border-left: 1px solid #63bcb8;
  }
}
@media screen and (min-width: 992px) {
  .faq-contents {
    padding-top: 80px;
  }
  .faq-search {
    gap: 40px;
  }
  .faq-search-title {
    font-size: 20px;
  }
  .faq-search-keyword__input .submit_button03 input[type="submit"] {
    font-size: 20px;
  }
  .faq-search-category-list {
    margin: 0 40px;
    row-gap: 20px;
    grid-template-columns: repeat(5,1fr);
  }
  .faq-search-category-list__item:nth-child(3n+1) {
    border-left: none;
  }
  .faq-search-category-list__item:nth-child(5n+1) {
    border-left: 1px solid #63bcb8;
  }
  .faq-search-category-list__item a {
    padding: 10px;
  }
  h2.faq_tit {
    margin: 60px 0;
    font-size: 25px;
  }
  h2.faq_tit02 {
    padding: 20px 0 20px 65px;
    min-height: 60px;
    background-size: 60px auto;
    font-size: 20px;
  }
  h2.faq_tit03 {
    margin: 0 0 60px;
    font-size: 25px;
  }
  .faq_list {
    margin: 60px 0 40px;
  }
  .faq_box {
    margin: 60px auto;
    padding: 40px 50px;
  }
  .faq_box .ans {
    background-size: 60px auto;
    padding: 15px 0 0 65px;
  }
}

/*  faq-grid
--------------------------------------------------*/
.faq-grid {
  display: grid;
}
.faq-grid[data-grid-gap*="xs-10"] { gap: 10px; }
.faq-grid[data-grid-gap*="xs-20"] { gap: 20px; }
.faq-grid[data-grid-gap*="xs-30"] { gap: 30px; }
.faq-grid[data-grid-gap*="xs-40"] { gap: 40px; }

.faq-grid[data-grid-row-gap*="xs-30"] { row-gap: 30px; }
.faq-grid[data-grid-column-gap*="xs-25"] { column-gap: 25px; }

@media screen and (min-width: 768px) {
  .faq-grid[data-grid-column*="md-2"] { grid-template-columns: repeat(2,1fr); }
  .faq-grid[data-grid-column-gap*="md-30"] { column-gap: 30px; }
}


/*  faq-box-primary
--------------------------------------------------*/
.faq-box-primary {
  height: 100%;
  background: #f3f5f6;
}
.faq-box-primary__head {
  padding: .5em;
  background: #b2dfdb;
  font-weight: 500;
  text-align: center;
}
.faq-box-primary__body {
  padding: 1em;
}

/*  faq-accessory-list
--------------------------------------------------*/
.faq-accessory-list {
  padding: 1em 0 0;
}
.faq-accessory-list > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  line-height: 1.4;
  margin: 0 0 .4em;
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 14px;
}
.faq-accessory-list li::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 1em;
  right: 2.0em;
  height: 2px;
  background-image: radial-gradient(circle, #9aa7ad 1px, transparent 1px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.faq-accessory-list__label {
  position: relative;
  padding: 0 .5em 0 0;
  max-width: 8em;
  background: #f3f5f6;
}
.faq-accessory-list__value {
  position: relative;
  white-space: nowrap;
  background: #f3f5f6;
}
.faq-accessory-list__notice {
  margin-top: 1.5em;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .faq-accessory-list__label {
    max-width: none;
  }
}

/*------------------------------------------------------------
  fix-bnr
------------------------------------------------------------*/
.fix-bnr {
  display: none;
  position: fixed;
  left: 15px;
  bottom: 10px;
  width: 330px;
  z-index: 999;
}
.fix-bnr__inner {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.fix-bnr__body img {
  max-width: 100%;
  vertical-align: top;
}
.fix-bnr__item + .fix-bnr__item {
  padding-top: 10px;
}
.fix-bnr__item a {
  display: block;
}
.fix-bnr__close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: #000;
  text-align: center;
  cursor: pointer;
}
.fix-bnr__close::before,
.fix-bnr__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.fix-bnr__close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media screen and (min-width: 768px){
  .c-fix-bnr-overlay {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .fix-bnr {
    width: 90%;
    max-width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .c-fix-bnr-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 999;
  }
  .fix-bnr {
    /* right: auto; */
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
}

/*slide*/
.logoslide {
  background: #ffffff;
  margin: 0 auto;
  padding: 40px 10px 10px 10px;
  height: 240px;
}
.logo {
  float: left;
  width: 200px !important;
  }
.logo img {
  width: 160px;
  margin: -15px auto 0;
  pointer-events: none;
}
@media screen and (max-width: 979px) {
  .logo {
    float: left;
    width: 180px !important;
  }
  .logo img {
    width: 150px;
    margin: -5px auto 0;
  }
  .logoslide {
    padding: 15px 10px 10px 10px;
    height: 190px;
  }
}