@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Zen+Maru+Gothic:wght@500&family=Abel&display=swap");
:root {
  --vw: 1vw;
}

/*===========================================================
+-----+// font rem
===========================================================*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

/*
html {
  @include media(pc) {
    font-size: getvwPc(10);
  }
  @include media(pc-l) {
    font-size: 62.5%;
  }
  @include media(sp) {
    font-size: getvw(10);
  }
}
*/
html {
  font-size: 62.5%;
}

body {
  color: #020202;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
}

.mainSection {
  margin-top: 90px;
}
@media only screen and (max-width: 1023px) {
  .mainSection {
    margin-top: 60px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .sp {
    display: block;
  }
}

.link_arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.link_arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: 0.3s;
  border-top: solid 1px #37CAEF;
  border-right: solid 1px #37CAEF;
}
.link_arrow:hover::after {
  margin-left: 15px;
}
@media only screen and (max-width: 1023px) {
  .link_arrow::after {
    width: 6px;
    height: 6px;
  }
}

.cmn_btn {
  display: inline-block;
  width: 250px;
  height: 56px;
  text-align: center;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  color: #fff;
  position: relative;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: 500;
  align-items: center;
  text-decoration: none !important;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
}
.cmn_btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.cmn_btn::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
.cmn_btn:after {
  border-top: 2px solid #78B2C0;
  border-right: 2px solid #78B2C0;
}
.cmn_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1023px) {
  .cmn_btn {
    width: 180px;
    height: 46px;
    font-size: 1.4rem;
  }
  .cmn_btn:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
  }
}
.cmn_btn.back_btn {
  background: #999;
}
.cmn_btn.back_btn:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cmn_btn.back_btn::after {
  left: 15px;
  transform: rotate(-135deg);
}
.cmn_btn.back_btn:hover::after {
  left: 10px;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.7;
}

.sec_in {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media only screen and (max-width: 1023px) {
  .sec_in {
    padding: 0 10px;
  }
}

.effect_01,
.effect_01_group .effect {
  transition: all 0.1s;
  opacity: 0;
  position: relative;
  top: 50px;
}
.effect_01.active,
.effect_01_group .effect.active {
  opacity: 1;
  top: 0;
}

.effect_02 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  top: -50px;
}
.effect_02.active {
  opacity: 1;
  top: 0;
}

.effect_03 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  left: 50px;
}
.effect_03.active {
  opacity: 1;
  left: 0;
}

.effect_04 {
  transition: all 1s;
  opacity: 0;
  position: relative;
  right: 50px;
}
.effect_04.active {
  opacity: 1;
  right: 0;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

/*
input[type="number"] {
	-moz-appearance: textfield;
}
*/
input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

.txt_l {
  text-align: left !important;
}

.txt_w {
  color: #fff;
}

.txt_b {
  color: #000;
}

.f-serif {
  font-family: "Abel", sans-serif;
}

@media only screen and (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (min-width: 1024px) {
  .pl50 {
    padding-left: 50px;
  }
}

header {
  width: 100%;
  height: 150px;
  padding: 25px 0 0;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
header .sec_in {
  max-width: 1430px;
}
header .head_top {
  height: 46px;
}
header .logo {
  max-width: 430px;
  margin-right: 20px;
  position: relative;
  z-index: 5;
}
header .contact {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  top: -140px;
}
header .contact ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 20px;
}
header .contact ul li {
  white-space: nowrap;
}
header .contact ul li:nth-child(1) {
  font-weight: 500;
  color: #8D8D8D;
  font-size: 1.4rem;
  text-align: center;
}
header .contact ul li:nth-child(1) span {
  color: #0E758E;
  display: block;
}
header .contact ul li:nth-child(2) a {
  font-size: 3.4rem;
  font-family: "Abel", sans-serif;
  color: #54C5E2;
  line-height: 1;
}
header .gnav > ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
header .gnav > ul > li a {
  padding: 37px 35px 27px;
  text-align: center;
  position: relative;
  line-height: 1;
  word-break: keep-all;
  opacity: 1;
  background: url(../img/common/gnav_bg.svg) left bottom no-repeat;
  background-size: 1px auto;
}
header .gnav > ul > li a:hover {
  color: #37CAEF;
}
header .gnav > ul > li a:hover::before, header .gnav > ul > li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #37CAEF;
}
header .gnav > ul > li.subnav nav {
  display: none;
}
header .gnav > ul > li.subnav nav::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 50px;
  position: absolute;
  margin-top: -3px;
  left: 0;
  z-index: 4;
  background: #72d8f2;
}
header .gnav > ul > li.subnav nav ul {
  position: absolute;
  z-index: 5;
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
header .gnav > ul > li.subnav nav ul li a {
  padding: 5px 35px;
  border-right: solid 1px #fff;
}
header .gnav > ul > li.subnav nav ul li a:hover {
  color: #fff;
  opacity: 1;
}
header .gnav > ul > li.subnav nav ul li a:hover::before {
  display: none;
}
header .gnav > ul > li.subnav nav ul li a::before {
  display: none !important;
}
header .gnav > ul > li.subnav nav ul li:nth-child(1) a {
  border-left: solid 1px #fff;
}
header .gnav > ul > li.subnav:hover nav {
  display: block;
}
header .gnav .order_a {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  line-height: 1;
  word-break: keep-all;
  opacity: 1;
  background-size: 1px auto;
}
@media only screen and (max-width: 1023px) {
  header .gnav .order_a {
    justify-content: center;
  }
}
header .gnav .order_a:hover {
  opacity: 0.7;
}
header .gnav .order_a a {
  padding: 16px 24px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #eda00a;
  color: #fff;
  margin-left: 10px;
}
header .gnav .order_a .a_45 {
  display: inline-block;
  text-indent: 0;
  transform: rotate(90deg);
}
@media only screen and (max-width: 1023px) {
  header {
    padding: 19px 15px;
    height: 64px;
  }
  header .sec_in {
    padding: 0;
  }
  header .head_top {
    max-width: 237px;
    height: auto;
  }
  header .logo {
    max-width: 237px;
  }
  header .contact {
    top: auto;
    padding-top: 5vh;
    display: block;
  }
  header .contact ul {
    display: block;
    text-align: center;
  }
  header .contact ul li {
    margin-bottom: 15px;
  }
  header .contact ul li:nth-child(1) span {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  header .contact ul li:nth-child(2) a {
    width: 300px;
    margin: 0 auto;
    padding: 13px;
    font-size: 3.2rem;
    font-family: "Abel", sans-serif;
    background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
    color: #fff;
    border-radius: 28px;
  }
  header .gnav {
    display: none;
    position: absolute;
    width: 100%;
    top: 64px;
    left: 0;
    background: #fff;
    padding-top: 40px;
    height: calc(100svh - 106px);
  }
  header .gnav > ul {
    display: block;
    width: 72%;
    margin: 0 auto;
    background: none;
    border-top: solid 1px #D9D9D9;
  }
  header .gnav > ul > li {
    border-bottom: solid 1px #D9D9D9;
  }
  header .gnav > ul > li a {
    padding: 20px 0;
    width: 100% !important;
    text-align: center;
    position: relative;
    line-height: 1;
    word-break: keep-all;
    opacity: 1;
    background: none;
    font-size: 1.6rem;
  }
  header .gnav > ul > li a:hover::before, header .gnav > ul > li.active a::before {
    display: none !important;
  }
  header .gnav > ul > li .snav_ttl a {
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
    pointer-events: none;
  }
  header .gnav > ul > li .snav_ttl a::after {
    content: "";
    position: absolute;
    right: 12px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  header .gnav > ul > li .snav_ttl a::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 5px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  header .gnav > ul > li .snav_ttl a::after {
    right: 10px;
    transform: rotate(135deg);
    border-color: #37CAEF;
  }
  header .gnav > ul > li .snav_ttl a::before {
    background: none;
  }
  header .gnav > ul > li .snav_ttl.active a::after {
    top: 25px;
    transform: rotate(-45deg);
  }
  header .gnav > ul > li.subnav nav {
    display: block;
  }
  header .gnav > ul > li.subnav nav::before {
    content: "";
    display: none;
  }
  header .gnav > ul > li.subnav nav ul {
    position: relative;
    padding: 0 10px;
    display: block;
    background: #37CAEF;
  }
  header .gnav > ul > li.subnav nav ul li a {
    color: #000;
    padding: 15px 0;
    border: none;
    border-bottom: solid 1px #fff;
  }
  header .gnav > ul > li.subnav nav ul li a:hover {
    color: #fff;
    opacity: 1;
  }
  header .gnav > ul > li.subnav nav ul li a:hover::before {
    display: none !important;
  }
  header .gnav > ul > li.subnav nav ul li a::after {
    top: 18px;
    right: 10px;
  }
  header .gnav > ul > li.subnav nav ul li:nth-child(1) a {
    border-left: none;
  }
  header .gnav > ul > li.subnav nav ul li:last-child a {
    border-bottom: none;
  }
  header .gnav > ul > li.subnav:hover nav {
    display: block;
  }
  header #menu_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
    z-index: 30;
    background: #37CAEF;
  }
  header #menu_btn .menu_trigger,
  header #menu_btn .menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header #menu_btn .menu_trigger {
    position: absolute;
    width: 48px;
    height: 48px;
    user-select: none;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  header #menu_btn .menu_trigger span {
    position: absolute;
    left: 12px;
    width: 24px;
    height: 3px;
    background-color: #fff;
  }
  header #menu_btn .menu_trigger span:nth-of-type(1) {
    top: 14px;
  }
  header #menu_btn .menu_trigger span:nth-of-type(2) {
    top: 23px;
  }
  header #menu_btn .menu_trigger span:nth-of-type(3) {
    top: 32px;
  }
  header #menu_btn.active .menu_trigger span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  header #menu_btn.active .menu_trigger span:nth-of-type(2) {
    opacity: 0;
  }
  header #menu_btn.active .menu_trigger span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}

main {
  padding-top: 200px;
}
main .h1_ttl {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 60px;
  font-weight: bold;
}
main .h1_ttl span {
  display: block;
  font-size: 2.8rem;
  color: #37CAEF;
  line-height: 1;
  font-family: "Abel", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  main {
    padding-top: 73px;
  }
  main .h1_ttl {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
}

.sec_btm_contact {
  padding: 65px 0 55px;
  background: #fff;
}
.sec_btm_contact .btm_contact_wrap {
  max-width: 910px;
  background: url(../img/top/img_contact.svg) left center no-repeat;
  background-size: 158px auto;
  margin: 0 auto;
  padding-left: 197px;
}
.sec_btm_contact h2 {
  font-weight: 400;
  font-size: 3.2rem;
  font-weight: bold;
  color: #0E758E;
  text-align: center;
}
.sec_btm_contact ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 45px;
}
.sec_btm_contact ul li {
  padding-top: 30px;
}
.sec_btm_contact ul li a {
  color: #fff;
  width: 330px;
  height: 72px;
  border-radius: 36px;
  line-height: 1;
  display: block;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.sec_btm_contact ul li:nth-child(1) a {
  padding: 25px 40px 25px 90px;
  font-size: 2rem;
  background: url(../img/top/icon_mail.svg) left 30px center no-repeat, linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  background-size: 35px auto, 100%;
}
.sec_btm_contact ul li:nth-child(2) a {
  padding: 20px 40px 20px 90px;
  font-size: 3.4rem;
  font-family: "Abel", sans-serif;
  background: url(../img/top/icon_tel_w.svg) left 30px center no-repeat, linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  background-size: 35px auto, 100%;
}
.sec_btm_contact ul li span {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  color: #8D8D8D;
}
@media only screen and (max-width: 1023px) {
  .sec_btm_contact {
    padding: 50px 0 50px;
  }
  .sec_btm_contact .btm_contact_wrap {
    max-width: 910px;
    background: url(../img/top/img_contact.svg) center bottom no-repeat;
    background-size: 158px auto;
    padding: 0 0 210px 0;
  }
  .sec_btm_contact h2 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 45px;
  }
  .sec_btm_contact ul {
    max-width: 100%;
    min-height: auto;
    display: block;
  }
  .sec_btm_contact ul li {
    padding-top: 0;
  }
  .sec_btm_contact ul li a {
    margin: 40px auto 0;
  }
}

.form_wrap dl {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  border-top: solid 1px #C4C4C4;
}
.form_wrap dl:last-of-type {
  border-bottom: solid 1px #C4C4C4;
}
.form_wrap dl dt {
  width: 240px;
  padding-left: 15px;
  font-size: 1.8rem;
  line-height: 1.4;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 15px;
}
.form_wrap dl dt span {
  font-size: 1.4rem;
  color: #fff;
  background: #37CAEF;
  border-radius: 20px;
  padding: 5px 10px;
  line-height: 1;
}
.form_wrap dl dd {
  width: calc(100% - 220px);
  font-size: 1.8rem;
}
.form_wrap dl .f_dd_center {
  width: 100%;
  text-align: center;
}
.form_wrap dl .f_dd_label {
  margin-right: initial !important;
}
.form_wrap dl .japanpost {
  padding-bottom: 25px;
  border-bottom: solid 1px #C4C4C4;
}
.form_wrap dl .yuusei {
  padding-top: 25px;
}
.form_wrap dl .yuusei label {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0 !important;
}
.form_wrap dl .yuusei label p {
  word-break: keep-all;
}
.form_wrap dl .yamato {
  padding-top: 25px;
}
.form_wrap dl .yamato label {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0 !important;
}
.form_wrap dl .yamato label p {
  word-break: keep-all;
  width: 200px;
}
.form_wrap dl .yamato label span {
  width: calc(100% - 242px);
}
.form_wrap dl .ship_time h3 {
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 400;
  margin: 25px 0 25px 50px;
  border-bottom: solid 1px #C4C4C4;
}
.form_wrap dl .ship_time ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px 40px;
  padding-left: 75px;
}
.form_wrap dl .ship_time ul li {
  width: 150px;
}
.form_wrap dl .ship_time ul li label {
  margin-right: 0;
}
.form_wrap dl.agree dd {
  width: 100%;
  text-align: center;
}
.form_wrap dl.agree dd label {
  margin-right: 0;
}
.form_wrap dl label {
  margin-right: 70px;
}
.form_wrap dl label input {
  margin-right: 15px;
}
.form_wrap dl label a {
  display: inline;
  color: #37CAEF;
  text-decoration: underline;
}
.form_wrap dl input[type=text], .form_wrap dl select, .form_wrap dl textarea {
  font-size: 1.8rem;
  background: #F0F0F0;
  border: solid 1px #C4C4C4;
  border-radius: 8px;
  padding: 20px 25px;
}
.form_wrap dl input[type=text], .form_wrap dl textarea {
  width: 100%;
}
.form_wrap dl textarea {
  height: 180px;
}
.form_wrap dl select {
  padding-right: 45px;
  appearance: none;
  position: relative;
  background: url(../img/common/select_bg.svg) right 15px center no-repeat #F0F0F0;
  background-size: 16px auto;
}
.form_wrap dl input[type=radio],
.form_wrap dl input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  background: #F0F0F0;
}
.form_wrap dl input[type=checkbox] {
  border-radius: 0;
}
.form_wrap dl input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #707070;
}
.form_wrap dl input[type=radio]:disabled:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F0F0F0 !important;
}
.form_wrap dl input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  transform: rotate(50deg);
  top: 1px;
  left: 10px;
  width: 6px;
  height: 20px;
  background: none;
  border-right: 4px solid #707070;
  border-bottom: 4px solid #707070;
}
.form_wrap dl .half {
  width: 320px !important;
}
.form_wrap dl .note {
  margin-top: 20px;
  font-size: 1.4rem;
}
.form_wrap dl .error {
  color: #ff0000;
  margin-top: 10px;
}
.form_wrap dl .err_adj p {
  text-align: center;
}
.form_wrap dl .err_adj_lv {
  margin-right: initial !important;
}
@media only screen and (max-width: 1023px) {
  .form_wrap dl .dd_center {
    text-align: center;
  }
  .form_wrap dl .dd_label {
    margin-right: initial !important;
  }
  .form_wrap dl .err_adj p {
    text-align: left;
  }
}
.form_wrap .btn_wrap {
  padding-top: 64px;
}
.form_wrap .btn_wrap ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 45px;
}
.form_wrap .btn_wrap ul .back {
  order: 0;
}
.form_wrap .btn_wrap ul .top a,
.form_wrap .btn_wrap ul .back a {
  width: 260px;
}
.form_wrap .btn_wrap ul .back a {
  /*
  padding-left: 30px;

  @include arrow_b(8,0);
  &::before{
      width: 24px;
      height: 24px;
      right: auto;
      left: 15px;
      top: 20px;
  }
  &::after{                    
      right: auto;
      left: 24px;
      rotate: 180deg;
  }
      */
}
.form_wrap .btn_wrap ul .submit {
  order: 1;
}
.form_wrap .btn_wrap ul .submit,
.form_wrap .btn_wrap ul .order {
  margin-left: auto;
}
.form_wrap .btn_wrap ul .submit a,
.form_wrap .btn_wrap ul .order a {
  width: 260px;
  /*
  color: #fff;
  background: $gra01;
  @include arrow_f(8,28);

  &::before{
      background: #fff;
      width: 24px;
      height: 24px;
      right: 20px;
      top: 20px;
      background-image: url(../img/common/maru-w.png);
      background-size: contain;
  }
  &::after{
      border-color: $s1_color;
  }
      */
}
.form_wrap .btn_wrap ul .submit a {
  width: 260px;
}
.form_wrap .btn_wrap .in_form {
  max-width: 840px;
  margin: 0 auto;
}
.form_wrap .btn_wrap .in_form.one {
  justify-content: center;
}
.form_wrap .btn_wrap .in_form.one li {
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .form_wrap {
    padding: 30px 0 60px;
  }
  .form_wrap__txt {
    margin-bottom: 50px;
  }
  .form_wrap dl {
    padding: 15px 0;
    display: block;
  }
  .form_wrap dl dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.6rem;
  }
  .form_wrap dl dt span {
    font-size: 1.2rem;
  }
  .form_wrap dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
  .form_wrap dl .japanpost {
    padding-bottom: 15px;
  }
  .form_wrap dl .yuusei {
    padding-top: 15px;
  }
  .form_wrap dl .yuusei label {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 !important;
  }
  .form_wrap dl .yuusei label p {
    width: auto;
  }
  .form_wrap dl .yuusei label span {
    width: auto;
  }
  .form_wrap dl .yamato {
    padding-top: 15px;
  }
  .form_wrap dl .yamato label {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 !important;
  }
  .form_wrap dl .yamato label p {
    width: auto;
  }
  .form_wrap dl .yamato label span {
    width: auto;
  }
  .form_wrap dl .ship_time h3 {
    font-size: 1.6rem;
    margin: 15px 0 15px 0;
  }
  .form_wrap dl .ship_time ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 20px;
    padding-left: 0;
  }
  .form_wrap dl .pd_l35 {
    padding-left: 35px;
  }
  .form_wrap dl label {
    margin-right: 30px;
  }
  .form_wrap dl label input {
    margin-right: 10px;
  }
  .form_wrap dl input[type=text], .form_wrap dl select, .form_wrap dl textarea {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
  .form_wrap dl input[type=text], .form_wrap dl textarea {
    width: 100%;
  }
  .form_wrap dl textarea {
    height: 120px;
  }
  .form_wrap dl select {
    background-size: 12px auto;
  }
  .form_wrap dl input[type=radio],
  .form_wrap dl input[type=checkbox] {
    width: 26px;
    height: 26px;
  }
  .form_wrap dl input[type=checkbox] {
    border-radius: 0;
  }
  .form_wrap dl input[type=radio]:checked:before {
    width: 14px;
    height: 14px;
  }
  .form_wrap dl input[type=checkbox]:checked:before {
    left: 8px;
    width: 6px;
    height: 13px;
    border-right: 3px solid #707070;
    border-bottom: 3px solid #707070;
  }
  .form_wrap dl .half {
    width: 200px !important;
  }
  .form_wrap dl .note {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .form_wrap .btn_wrap {
    padding-top: 32px;
  }
  .form_wrap .btn_wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 30px 20px;
  }
  .form_wrap .btn_wrap ul a {
    font-size: 1.8rem;
    border-radius: 32px;
    padding: 15px;
    height: 60px;
  }
  .form_wrap .btn_wrap ul .back {
    order: 1;
  }
  .form_wrap .btn_wrap ul .top {
    order: 2;
  }
  .form_wrap .btn_wrap ul .top a,
  .form_wrap .btn_wrap ul .back a {
    width: 260px;
  }
  .form_wrap .btn_wrap ul .back a {
    /*
    padding-left: 30px;
    @include arrow_b(8,0);
    &::before{
        width: 24px;
        height: 24px;
        right: auto;
        left: 15px;
        //top: 20px;
        top: 18px;
    }
    &::after{                    
        right: auto;
        left: 24px;
        rotate: 180deg;
    }
        */
  }
  .form_wrap .btn_wrap ul .order,
  .form_wrap .btn_wrap ul .submit {
    margin-left: 0;
    order: 0;
  }
  .form_wrap .btn_wrap ul .order a,
  .form_wrap .btn_wrap ul .submit a {
    width: 260px;
    /*
    color: #fff;
    background: $gra01;
    @include arrow_f(8,28);

    &::before{
        background: #fff;
        width: 24px;
        height: 24px;
        right: 20px;
        top: 18px;
        background-image: url(../img/common/maru-w.png);
        background-size: contain;
    }
    &::after{
        border-color: $s1_color;
    }
        */
  }
  .form_wrap .btn_wrap ul .submit a {
    width: 260px;
  }
}

.fl_btn {
  position: fixed;
  top: 375px;
  right: 0;
  z-index: 20;
  width: 63px;
}
.fl_btn li {
  /*
  &:nth-child(2) a{
      padding: 15px 20px 20px 18px;
      border-bottom-left-radius: 10px;   
      background: #7ECEE2;         
      span{
          padding-top: 25px;
          background: url(../img/common/icon_fl02.svg) center top no-repeat;
          background-size: 16px auto;
      }
  }
  */
}
.fl_btn li a {
  color: #fff;
  text-align: center;
  writing-mode: vertical-rl;
}
.fl_btn li:nth-child(1) a {
  padding: 15px 20px 20px 18px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #0CB8E3;
}
.fl_btn li:nth-child(1) a span {
  padding-top: 25px;
  background: url(../img/common/icon_fl01.svg) center top no-repeat;
  background-size: 16px auto;
}
@media only screen and (max-width: 1023px) {
  .fl_btn {
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .fl_btn ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .fl_btn ul li {
    width: 100%;
    background-image: none !important;
  }
  .fl_btn ul li:nth-child(1) a, .fl_btn ul li:nth-child(2) a {
    padding: 10px 10px 10px 20px;
    writing-mode: horizontal-tb;
    border-radius: 0;
    min-height: 20px;
  }
  .fl_btn ul li:nth-child(1) a span, .fl_btn ul li:nth-child(2) a span {
    background-position: left top 2px;
    padding: 0 0 0 25px;
  }
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 5;
}
.pagetop a {
  width: 64px;
  height: 64px;
  background: #7ECEE2;
  font-size: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagetop a::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 20px;
  width: 18px;
  height: 18px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media only screen and (max-width: 1023px) {
  .pagetop {
    bottom: 52px;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
  }
  .pagetop a::after {
    top: 16px;
    right: 11px;
    width: 14px;
    height: 14px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
  }
}

.pankuz {
  padding: 25px 0 20px;
}
.pankuz ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 10px;
}
.pankuz ul li {
  font-size: 1.4rem;
}
.pankuz ul li:not(:last-child) {
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 15px;
}
.pankuz ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.pankuz ul li:not(:last-child)::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
.pankuz ul li:not(:last-child)::before {
  display: none;
}
.pankuz ul li:not(:last-child)::after {
  top: 7px;
  border-color: #37CAEF;
}
@media only screen and (max-width: 1023px) {
  .pankuz {
    display: none;
  }
}

footer {
  background: #F0F0F0;
  padding: 0 0 25px;
}
footer .sec_in {
  max-width: 1430px;
}
footer .foot_top {
  padding-top: 48px;
  margin-bottom: 50px;
}
footer .foot_top ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .foot_top ul li a {
  font-size: 1.4rem;
  line-height: 1;
  padding: 15px 32px;
  border-right: solid 1px #fff;
}
footer .foot_top ul li:nth-child(1) a {
  border-left: solid 1px #fff;
}
footer .footer_box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  footer .footer_box {
    padding-top: calc(1.875 * var(--vw));
    padding-bottom: calc(1.875 * var(--vw));
  }
}
footer .footer_box address {
  width: 70%;
}
footer .footer_box .menu_box {
  display: flex;
  justify-content: space-between;
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  footer .footer_box .menu_box {
    display: none;
  }
}
footer .footer_box .menu_box .menu1, footer .footer_box .menu_box .menu2, footer .footer_box .menu_box .menu3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer_box .menu_box .menu1 h4, footer .footer_box .menu_box .menu2 h4, footer .footer_box .menu_box .menu3 h4 {
  font-size: calc(0.9722222222 * var(--vw));
  font-weight: 600;
}
footer .footer_box .menu_box .menu1 p, footer .footer_box .menu_box .menu2 p, footer .footer_box .menu_box .menu3 p {
  font-size: calc(0.8333333333 * var(--vw));
}
footer .footer_box .menu_box .menu1 .mb_15, footer .footer_box .menu_box .menu2 .mb_15, footer .footer_box .menu_box .menu3 .mb_15 {
  margin-bottom: calc(1.0416666667 * var(--vw));
}
footer .footer_box .menu_box .menu1 .mb_10, footer .footer_box .menu_box .menu2 .mb_10, footer .footer_box .menu_box .menu3 .mb_10 {
  margin-bottom: calc(0.6944444444 * var(--vw));
}
footer .footer_box .menu_box .menu1 {
  width: 35%;
}
footer .footer_box .menu_box .menu2 {
  width: 25%;
}
footer .footer_box .menu_box .menu3 {
  width: 30%;
}
footer .logo {
  max-width: 380px;
  margin-bottom: 30px;
}
footer address {
  font-style: normal;
}
footer small {
  width: 100%;
  line-height: 1;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  footer {
    padding: 0 0 60px;
  }
  footer .foot_top {
    padding-top: 50px;
    margin-bottom: 80px;
  }
  footer .foot_top ul {
    order: 1;
    display: block;
    margin-bottom: 80px;
    width: 100%;
  }
  footer .foot_top ul li {
    text-align: center;
    padding: 15px 32px;
  }
  footer .foot_top ul li a {
    font-size: 1.4rem;
    line-height: 1;
    padding: 0;
    display: inline;
    border: none !important;
  }
  footer .footer_box {
    display: initial;
  }
  footer address {
    margin-bottom: 40px;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
  }
  footer address .logo {
    max-width: 283px;
    margin: 0 auto 30px;
  }
  footer address .addr {
    padding: 0 30px;
    text-align: center;
  }
}

.sec_ttl {
  background: url(../img/common/lower_ttl_bg.jpg) center center no-repeat;
  background-size: cover;
  min-height: 220px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}
.sec_ttl h1 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}
.sec_ttl h1 img {
  width: 145px;
}
.sec_ttl h1 span {
  font-size: 4rem;
  color: #37CAEF;
  font-weight: bold;
  border-left: solid 3px #555555;
  padding-left: 30px;
  margin-left: 30px;
}
@media only screen and (max-width: 1023px) {
  .sec_ttl {
    background: url(../img/common/lower_ttl_bg_sp.png) center center no-repeat;
    min-height: 160px;
  }
  .sec_ttl h1 {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
  }
  .sec_ttl h1 img {
    width: 115px;
  }
  .sec_ttl h1 span {
    font-size: 3.1rem;
    padding-left: 20px;
    margin-left: 20px;
  }
}

#top main {
  padding-top: 150px;
}
@media only screen and (max-width: 1023px) {
  #top main {
    padding-top: 64px;
  }
}
#top .sec_kv {
  width: 100%;
  position: relative;
}
#top .sec_kv .sec_in {
  max-width: 1430px;
  position: relative;
  z-index: 5;
}
#top .sec_kv__txt {
  position: absolute;
  top: 150px;
  left: 80px;
}
#top .sec_kv__txt h1 span {
  color: #414141;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.8;
}
#top .sec_kv__txt h1 .tf-big {
  font-size: 4.8rem;
  font-weight: bold;
}
#top .sec_kv__txt h1 .text-pos {
  text-align: center;
}
#top .sec_kv__txt2 {
  position: absolute;
  top: 150px;
  left: 80px;
}
#top .sec_kv__txt2 h1 span {
  color: #414141;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.8;
}
#top .sec_kv__txt2 h1 .tf-big {
  font-size: 4.8rem;
  font-weight: bold;
}
#top .sec_kv__txt2 h1 .text-pos {
  text-align: center;
}
#top .sec_kv__txt3 {
  position: absolute;
  top: 150px;
  left: 80px;
}
#top .sec_kv__txt3 h1 span {
  color: #414141;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.8;
}
#top .sec_kv__txt3 h1 .tf-big {
  font-size: 4.8rem;
  font-weight: bold;
}
#top .sec_kv__txt3 h1 .text-pos {
  text-align: center;
}
#top .sec_kv__btn {
  margin-top: 60px;
}
#top .sec_kv__btn a {
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  padding: 30px 25px;
  max-width: 520px;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  border-radius: 16px;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
}
#top .sec_kv__btn a::after {
  content: "";
  position: absolute;
  right: 31px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
#top .sec_kv__btn a::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#top .sec_kv__btn a::before {
  right: 20px;
  top: calc(50% - 15px);
  background: #fff;
}
#top .sec_kv__btn a::after {
  top: calc(50% - 5px);
  border-color: #37CAEF;
}
#top .sec_kv__slider {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 4;
}
#top .sec_kv__slider img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  #top .sec_kv .sec_in {
    padding: 0;
    height: 100%;
  }
  #top .sec_kv__txt {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 48px;
    display: flex;
    justify-content: center;
  }
  #top .sec_kv__txt h1 span {
    color: #414141;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.6;
  }
  #top .sec_kv__txt h1 .tf-big {
    font-size: 3.2rem;
    font-weight: bold;
  }
  #top .sec_kv__txt2 {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 48px;
    display: flex;
    justify-content: center;
  }
  #top .sec_kv__txt2 h1 span {
    color: #414141;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.6;
  }
  #top .sec_kv__txt2 h1 .tf-big {
    font-size: 3.2rem;
    font-weight: bold;
  }
  #top .sec_kv__txt3 {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 48px;
    display: flex;
    justify-content: center;
  }
  #top .sec_kv__txt3 h1 span {
    color: #414141;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.6;
  }
  #top .sec_kv__txt3 h1 .tf-big {
    font-size: 3.2rem;
    font-weight: bold;
  }
  #top .sec_kv__btn {
    display: none;
  }
  #top .sec_kv__slider img {
    width: 100%;
    object-fit: cover;
  }
}
#top .sec_contact_sp ul {
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0 20px;
}
#top .sec_contact_sp ul li {
  white-space: nowrap;
}
#top .sec_contact_sp ul li:nth-child(1) {
  font-weight: 500;
  color: #8D8D8D;
  font-size: 1rem;
}
#top .sec_contact_sp ul li:nth-child(1) span {
  color: #0E758E;
  display: block;
}
#top .sec_contact_sp ul li:nth-child(2) a {
  font-size: 2.5rem;
  font-family: "Abel", sans-serif;
  color: #fff;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  border-radius: 24px;
  line-height: 1;
  padding: 5px 20px;
}
#top .sec_news {
  padding: 50px 0;
}
#top .sec_news .news_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
}
#top .sec_news .news_wrap .ttl {
  word-break: keep-all;
  color: #37CAEF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 10px 25px 10px 25px;
  padding: 0 5px 10px;
  border-bottom: solid 4px #37CAEF;
}
#top .sec_news .news_wrap dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0 0 0 30px;
}
#top .sec_news .news_wrap dl dt {
  padding: 10px 0;
  width: 120px;
}
#top .sec_news .news_wrap dl dd {
  padding: 10px 0;
}
@media only screen and (max-width: 1023px) {
  #top .sec_news {
    padding: 25px 0 30px;
  }
  #top .sec_news .news_wrap {
    display: block;
  }
  #top .sec_news .news_wrap .ttl {
    color: #0E758E;
    font-size: 1.6rem;
    background: none;
    padding: 15px 10px;
    border-radius: 0;
    margin: 0 10px;
  }
  #top .sec_news .news_wrap dl {
    display: block;
    padding: 8px 0 20px 17px;
  }
  #top .sec_news .news_wrap dl dt {
    width: 100%;
  }
  #top .sec_news .news_wrap dl dd {
    padding-top: 0;
    width: 100%;
  }
}
#top .sec_products {
  padding: 55px 0 100px;
  background: #F2F2F2;
}
#top .sec_products h2 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 40px;
  font-weight: bold;
}
#top .sec_products h2 span {
  display: block;
  font-size: 2.8rem;
  color: #37CAEF;
  line-height: 1;
  font-family: "Abel", sans-serif;
  font-weight: 400;
}
#top .sec_products .products_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 96px;
  max-width: 1064px;
  margin: 0 auto;
}
#top .sec_products .products_list li {
  padding: 30px;
  background: #fff;
  border-radius: 6px;
}
#top .sec_products .products_list li figure {
  width: 230px;
  height: 188px;
  margin: 0 auto 35px;
  text-align: center;
}
#top .sec_products .products_list li figure img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
#top .sec_products .products_list li h3 {
  font-size: 2.4rem;
  position: relative;
  min-width: 100px;
  padding-right: 45px;
  display: inline-block;
  margin-bottom: 20px;
}
#top .sec_products .products_list li h3::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#top .sec_products .products_list li h3::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#top .sec_products .products_list li p {
  text-align: center;
}
#top .sec_products .order_bnr {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 30px 35px;
  border-radius: 10px;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  max-width: 1064px;
  margin: 0 auto;
}
#top .sec_products .order_bnr p {
  color: #fff;
  padding-right: 50px;
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
}
#top .sec_products .order_bnr p::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
#top .sec_products .order_bnr p::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#top .sec_products .order_bnr p::after {
  top: calc(50% - 4px);
  border-top: solid 2px #37CAEF;
  border-right: solid 2px #37CAEF;
}
#top .sec_products .order_bnr p::before {
  top: calc(50% - 13px);
  background: #fff;
  border-radius: 50%;
}
#top .sec_products .order_bnr ul {
  padding-left: 20px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 35px;
}
#top .sec_products .order_bnr ul li {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
#top .sec_products .order_bnr ul li figure {
  text-align: center;
}
#top .sec_products .order_bnr ul li figure figcaption {
  text-align: center;
  color: #0E758E;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 5px;
}
#top .sec_products .order_bnr ul li:nth-child(1) figure {
  padding-top: 23px;
}
#top .sec_products .order_bnr ul li:nth-child(1) figure img {
  width: 44px;
}
#top .sec_products .order_bnr ul li:nth-child(2) figure {
  padding-top: 23px;
}
#top .sec_products .order_bnr ul li:nth-child(2) figure img {
  width: 35px;
}
#top .sec_products .order_bnr ul li:nth-child(3) figure {
  padding-top: 18px;
}
#top .sec_products .order_bnr ul li:nth-child(3) figure img {
  width: 58px;
}
@media only screen and (max-width: 1023px) {
  #top .sec_products {
    padding: 35px 0 50px;
  }
  #top .sec_products h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  #top .sec_products .products_list {
    grid-template-columns: 1fr;
    gap: 40px 0;
    margin: 0 auto;
  }
  #top .sec_products .products_list li {
    /*
    &:nth-child(1){order: 1;}
    &:nth-child(2){order: 3;}
    &:nth-child(3){order: 2;}
    &:nth-child(4){order: 4;}
    */
  }
  #top .sec_products .products_list li figure {
    margin: 0 auto 15px;
  }
  #top .sec_products .products_list li p {
    font-size: 1.6rem;
    text-align: left;
  }
  #top .sec_products .order_bnr {
    display: block;
    padding: 20px 15px;
    margin: 64px auto 0;
  }
  #top .sec_products .order_bnr p {
    font-size: 2.4rem;
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
    padding-right: 30px;
    margin-bottom: 20px;
  }
  #top .sec_products .order_bnr p::after {
    content: "";
    position: absolute;
    right: 9px;
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  #top .sec_products .order_bnr p::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 5px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  #top .sec_products .order_bnr p::after {
    top: calc(50% - 3px);
    border-top: solid 2px #37CAEF;
    border-right: solid 2px #37CAEF;
  }
  #top .sec_products .order_bnr p::before {
    width: 23px;
    height: 23px;
    top: calc(50% - 11px);
    background: #fff;
  }
  #top .sec_products .order_bnr ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0 25px;
  }
  #top .sec_products .order_bnr ul li {
    width: 75px;
    height: 75px;
  }
  #top .sec_products .order_bnr ul li figure {
    text-align: center;
  }
  #top .sec_products .order_bnr ul li figure figcaption {
    font-size: 1.1rem;
    margin-top: 5px;
  }
  #top .sec_products .order_bnr ul li:nth-child(1) figure {
    padding-top: 18px;
  }
  #top .sec_products .order_bnr ul li:nth-child(1) figure img {
    width: 35px;
  }
  #top .sec_products .order_bnr ul li:nth-child(2) figure {
    padding-top: 19px;
  }
  #top .sec_products .order_bnr ul li:nth-child(2) figure img {
    width: 28px;
  }
  #top .sec_products .order_bnr ul li:nth-child(3) figure {
    padding-top: 14px;
  }
  #top .sec_products .order_bnr ul li:nth-child(3) figure img {
    width: 46px;
  }
}

#contact .sec_contact {
  padding: 30px 0 135px;
}
#contact .sec_contact__txt {
  max-width: 840px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
#contact footer .sec_btm_contact {
  display: none;
}

#company .sec_company {
  padding: 30px 0 100px;
}
#company .sec_company dl {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  border-top: solid 1px #C4C4C4;
}
#company .sec_company dl:last-of-type {
  border-bottom: solid 1px #C4C4C4;
}
#company .sec_company dl dt {
  width: 220px;
  padding-left: 15px;
  font-size: 1.8rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 15px;
}
#company .sec_company dl dd {
  width: calc(100% - 220px);
  font-size: 1.8rem;
}
#company .sec_company__iso {
  max-width: 840px;
  margin: 80px auto 0;
  border: solid 3px #37CAEF;
  border-radius: 10px;
  padding: 35px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#company .sec_company__iso h2 {
  width: 100%;
  margin-bottom: 15px;
}
#company .sec_company__iso .txt {
  width: calc(100% - 300px);
}
#company .sec_company__iso .txt dl {
  margin-top: 25px;
  display: block;
  border: none;
  padding: 0;
}
#company .sec_company__iso .txt dl dt {
  padding-left: 0;
}
#company .sec_company__iso .txt dl dt, #company .sec_company__iso .txt dl dd {
  width: 100%;
}
#company .sec_company__iso figure {
  width: 230px;
}
#company .sec_company .pc-svg {
  width: 308px;
}
@media only screen and (max-width: 1023px) {
  #company .sec_company {
    padding: 30px 0 0px;
  }
  #company .sec_company .com_tb {
    width: 100%;
  }
  #company .sec_company .com_tb_td {
    white-space: nowrap;
    width: 100px;
  }
  #company .sec_company dl {
    padding: 15px;
    display: block;
  }
  #company .sec_company dl dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #company .sec_company dl dt span {
    font-size: 1.2rem;
  }
  #company .sec_company dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
  #company .sec_company__iso {
    margin-top: 50px;
    padding: 20px 15px;
    display: block;
  }
  #company .sec_company__iso h2 {
    width: 100%;
  }
  #company .sec_company__iso .txt {
    width: 100%;
  }
  #company .sec_company__iso figure {
    width: 230px;
    margin: 20px auto 0;
  }
  #company .sec_company .sp-svg {
    width: 275px;
  }
}
#company .sec_access {
  padding: 70px 0 65px;
  background: #F2F2F2;
}
#company .sec_access .sec_in {
  max-width: 940px;
}
#company .sec_access h2 {
  font-size: 3.2rem;
  margin-bottom: 40px;
  text-align: center;
}
#company .sec_access .map {
  margin-bottom: 25px;
}
#company .sec_access .map iframe {
  width: 100%;
  height: 300px;
}
#company .sec_access .zip {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#company .sec_access .access {
  padding-left: 30px;
  background: url(../img/company/icon01.svg) left top no-repeat;
  background-size: 16px auto;
}
@media only screen and (max-width: 1023px) {
  #company .sec_access {
    padding: 30px 0 60px;
  }
  #company .sec_access h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #company .sec_access .map {
    margin-bottom: 20px;
  }
  #company .sec_access .map iframe {
    height: 200px;
  }
  #company .sec_access .zip {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
#company .sec_guideline {
  padding: 30px 0 135px;
}
#company .sec_guideline__txt {
  max-width: 840px;
  line-height: 1.8;
  margin: 0 auto 64px;
}
#company .sec_guideline__link {
  max-width: 840px;
  margin: 0 auto;
  border: solid 3px #37CAEF;
  border-radius: 10px;
  padding: 40px 45px;
}
#company .sec_guideline__link li {
  list-style-type: disc;
  margin-left: 20px;
}
#company .sec_guideline__link li:not(:last-child) {
  margin-bottom: 50px;
}
#company .sec_guideline__link li a {
  font-size: 2rem;
  padding-right: 35px;
  padding-bottom: 5px;
  color: #0DB8E3;
  display: inline;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
#company .sec_guideline__link li a.pdf {
  background: url(../img/company/icon_pdf.svg) right top no-repeat;
  background-size: 28px auto;
}
@media only screen and (max-width: 1023px) {
  #company .sec_guideline {
    padding: 30px 0 60px;
  }
  #company .sec_guideline__txt {
    margin: 0 auto 30px;
  }
  #company .sec_guideline__link {
    padding: 20px;
  }
  #company .sec_guideline__link li {
    margin-left: 20px;
  }
  #company .sec_guideline__link li:not(:last-child) {
    margin-bottom: 25px;
  }
  #company .sec_guideline__link li a {
    font-size: 1.8rem;
  }
  #company .sec_guideline__link li a.pdf {
    background-size: 26px auto;
  }
}
#company .sec_terms {
  padding: 30px 0 100px;
}
#company .sec_terms__terms {
  max-width: 840px;
  margin: 0 auto 80px;
  padding: 32px;
  border: solid 1px #CBCBCB;
}
#company .sec_terms__terms h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
#company .sec_terms__terms .read {
  margin-bottom: 40px;
  line-height: 1.8;
}
#company .sec_terms__terms ol > li {
  list-style-type: decimal;
  vertical-align: top;
  margin-left: 20px;
  line-height: 1.8;
}
#company .sec_terms__terms ol > li:not(:last-child) {
  margin-bottom: 40px;
}
#company .sec_terms__terms ol > li ul {
  margin-left: -20px;
}
#company .sec_terms__terms ol > li ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
  line-height: 1.8;
}
#company .sec_terms__terms ol > li ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1px;
}
#company .sec_terms__agree {
  max-width: 840px;
  margin: 0 auto;
  background: #F2F2F2;
  padding: 40px;
}
#company .sec_terms__agree label {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 40px;
}
#company .sec_terms__agree label input {
  margin-right: 10px;
  appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #C4C4C4;
  background: #fff;
}
#company .sec_terms__agree label input:checked {
  background: #54C5E2;
}
#company .sec_terms__agree label input:checked:before {
  content: "";
  position: absolute;
  transform: rotate(50deg);
  top: 2px;
  left: 10px;
  width: 4px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#company .sec_terms__agree .agree_btn {
  font-size: 2rem;
  color: #fff;
  width: 320px;
  text-align: center;
  margin: 0 auto;
  padding: 15px 0;
  background: #C3C3C3;
  border-radius: 32px;
  pointer-events: none;
  transition: 0.3s;
}
#company .sec_terms__agree .agree_btn.active {
  pointer-events: auto;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  text-align: initial;
  padding-left: 60px;
}
#company .sec_terms__agree .agree_btn.active::after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#company .sec_terms__agree .agree_btn.active::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#company .sec_terms__agree .agree_btn.active::before {
  background: #fff;
  right: 16px;
  top: 16px;
  background-image: url(../img/common/maru-w.png);
  background-size: contain;
}
#company .sec_terms__agree .agree_btn.active::after {
  border-color: #37CAEF;
}
@media only screen and (max-width: 1023px) {
  #company .sec_terms {
    padding: 30px 0 0px;
  }
  #company .sec_terms__terms {
    margin: 0 auto 40px;
    padding: 16px;
  }
  #company .sec_terms__terms h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #company .sec_terms__terms .read {
    margin-bottom: 20px;
  }
  #company .sec_terms__terms ol > li:not(:last-child) {
    margin-bottom: 20px;
  }
  #company .sec_terms__agree {
    margin: 0 auto;
    background: #F2F2F2;
    padding: 20px;
  }
  #company .sec_terms__agree label {
    margin-bottom: 20px;
  }
  #company .sec_terms__agree .agree_btn {
    font-size: 1.6rem;
    color: #fff;
    max-width: 320px;
    width: 100%;
  }
  #company .sec_terms__agree .agree_btn.active {
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
    text-align: initial;
    padding-left: 75px;
  }
  #company .sec_terms__agree .agree_btn.active::after {
    content: "";
    position: absolute;
    right: 32px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
    display: none;
  }
  #company .sec_terms__agree .agree_btn.active::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 4px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  #company .sec_terms__agree .agree_btn.active::before {
    background: #fff;
    right: 13px;
    top: 13px;
    background-image: url(../img/common/maru-w.png);
    background-size: contain;
  }
  #company .sec_terms__agree .agree_btn.active::after {
    top: 21px;
    border-color: #37CAEF;
  }
}

#products .sec_products {
  padding: 30px 0 100px;
}
#products .sec_products__item {
  border-radius: 10px;
  border: solid 3px #37CAEF;
  padding: 32px;
}
#products .sec_products__item h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 35px;
}
#products .sec_products__item h2 span {
  font-size: 2.4rem;
  font-weight: 400;
  color: #37CAEF;
  font-family: "Abel", sans-serif;
  margin-left: 25px;
}
#products .sec_products__item .items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#products .sec_products__item .items > li {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#products .sec_products__item .items > li:nth-child(odd) {
  padding: 0 34px 0 0;
  border-right: solid 1px #BABABA;
}
#products .sec_products__item .items > li:nth-child(even) {
  padding: 0 0 0 34px;
}
#products .sec_products__item .items > li figure {
  max-width: 200px;
  width: 41.2371134021%;
}
#products .sec_products__item .items > li .info {
  max-width: 245px;
  width: 50.5154639175%;
}
#products .sec_products__item .items > li .info .links {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#products .sec_products__item .items > li .info .links a {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 30px;
}
#products .sec_products__item .items > li .info .links a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#products .sec_products__item .items > li .info .links a::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#products .sec_products__item .items > li .info .links a::before {
  width: 23px;
  height: 23px;
  background-size: contain;
}
#products .sec_products__item .items > li .info .links a::after {
  top: 12px;
}
#products .sec_products__item .items > li .info .links .a-tag {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 30px;
  color: #37CAEF;
}
#products .sec_products__item .items > li .info .links .a-tag::after {
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#products .sec_products__item .items > li .info .links .a-tag::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#products .sec_products__item .items > li .info .links .a-tag::before {
  width: 23px;
  height: 23px;
}
#products .sec_products__item .items > li .info .links .a-tag::after {
  top: 12px;
}
#products .sec_products__item .items > li .info .links .more {
  width: 100%;
  text-align: right;
}
#products .sec_products__item .items > li .info .links .more a {
  color: #37CAEF;
}
#products .sec_products__item .items > li .info .links .order a {
  color: #7ECEE2;
}
#products .sec_products__item .items > li .info .links .order a::before {
  background-image: url(../img/common/maru_s.png);
  background-size: contain;
}
#products .sec_products__item .items > li .info .links .case a {
  color: #AEAEAE;
}
#products .sec_products__item .items > li .info .links .case a::before {
  background: #AEAEAE;
  background-image: url(../img/common/maru_g.png);
  background-size: contain;
}
#products .sec_products__item .items > li .info .pt4 {
  padding-top: 4.5px;
}
#products .sec_products__item .items > li .box-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products .sec_products__item .items h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #37CAEF;
  line-height: 1.2;
  margin-bottom: 15px;
}
#products .sec_products__item .items h3 span {
  font-size: 1.8rem;
}
#products .sec_products__item_half {
  width: 50%;
  border-radius: 10px;
  border: solid 3px #37CAEF;
  padding: 32px;
}
#products .sec_products__item_half h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 35px;
}
#products .sec_products__item_half h2 span {
  font-size: 2.4rem;
  font-weight: 400;
  color: #37CAEF;
  font-family: "Abel", sans-serif;
  margin-left: 25px;
}
#products .sec_products__item_half .items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#products .sec_products__item_half .items > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#products .sec_products__item_half .items > li:nth-child(even) {
  padding: 0 0 0 34px;
}
#products .sec_products__item_half .items > li figure {
  max-width: 200px;
  width: 41.2371134021%;
}
#products .sec_products__item_half .items > li .info {
  max-width: 245px;
  width: 50.5154639175%;
}
#products .sec_products__item_half .items > li .info .links {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#products .sec_products__item_half .items > li .info .links a {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 30px;
}
#products .sec_products__item_half .items > li .info .links a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#products .sec_products__item_half .items > li .info .links a::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#products .sec_products__item_half .items > li .info .links a::before {
  width: 23px;
  height: 23px;
  background-size: contain;
}
#products .sec_products__item_half .items > li .info .links a::after {
  top: 12px;
}
#products .sec_products__item_half .items > li .info .links .a-tag {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 30px;
  color: #37CAEF;
}
#products .sec_products__item_half .items > li .info .links .a-tag::after {
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#products .sec_products__item_half .items > li .info .links .a-tag::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#products .sec_products__item_half .items > li .info .links .a-tag::before {
  width: 23px;
  height: 23px;
}
#products .sec_products__item_half .items > li .info .links .a-tag::after {
  top: 12px;
}
#products .sec_products__item_half .items > li .info .links .more {
  width: 100%;
  text-align: right;
}
#products .sec_products__item_half .items > li .info .links .more a {
  color: #37CAEF;
}
#products .sec_products__item_half .items > li .info .links .order a {
  color: #7ECEE2;
}
#products .sec_products__item_half .items > li .info .links .order a::before {
  background-image: url(../img/common/maru_s.png);
  background-size: contain;
}
#products .sec_products__item_half .items > li .info .links .case a {
  color: #AEAEAE;
}
#products .sec_products__item_half .items > li .info .links .case a::before {
  background: #AEAEAE;
  background-image: url(../img/common/maru_g.png);
  background-size: contain;
}
#products .sec_products__item_half .items > li .box-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products .sec_products__item_half .items h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #37CAEF;
  line-height: 1.2;
  margin-bottom: 15px;
}
#products .sec_products__item_half .items h3 span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 1023px) {
  #products .sec_products {
    padding: 30px 0 40px;
  }
  #products .sec_products__item {
    padding: 16px;
  }
  #products .sec_products__item h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #products .sec_products__item h2 span {
    font-size: 1.8rem;
    margin-left: 15px;
  }
  #products .sec_products__item .items {
    display: block;
  }
  #products .sec_products__item .items > li {
    width: 100%;
    display: block;
    padding: 20px 0;
  }
  #products .sec_products__item .items > li:not(:last-child) {
    border-bottom: solid 1px #BABABA;
  }
  #products .sec_products__item .items > li:nth-child(odd) {
    padding: 20px 0;
    border-right: none;
  }
  #products .sec_products__item .items > li:nth-child(even) {
    padding: 20px 0;
  }
  #products .sec_products__item .items > li figure {
    width: 100%;
    max-width: 210px;
    margin: 0 auto 10px;
  }
  #products .sec_products__item .items > li .info {
    width: 100%;
    max-width: 100%;
  }
  #products .sec_products__item .items > li .info .links {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  #products .sec_products__item .items > li .info .links a {
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
    padding-right: 30px;
  }
  #products .sec_products__item .items > li .info .links a::after {
    content: "";
    position: absolute;
    right: 8px;
    top: calc(50% - 3.5px);
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
    display: none;
  }
  #products .sec_products__item .items > li .info .links a::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 4px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  #products .sec_products__item .items > li .info .links a::before {
    width: 23px;
    height: 23px;
    background-size: contain;
  }
  #products .sec_products__item .items > li .info .links a::after {
    top: 12px;
  }
  #products .sec_products__item .items > li .info .links .more {
    width: 100%;
    text-align: right;
  }
  #products .sec_products__item .items > li .info .links .more a {
    color: #37CAEF;
  }
  #products .sec_products__item .items > li .info .links .order a {
    color: #7ECEE2;
  }
  #products .sec_products__item .items > li .info .links .order a::before {
    background-image: url(../img/common/maru_s.png);
    background-size: contain;
  }
  #products .sec_products__item .items > li .info .links .case a {
    color: #AEAEAE;
  }
  #products .sec_products__item .items > li .info .links .case a::before {
    background-image: url(../img/common/maru_g.png);
    background-size: contain;
  }
  #products .sec_products__item .items h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #37CAEF;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #products .sec_products__item .items h3 span {
    font-size: 1.8rem;
  }
  #products .sec_products__item_half {
    padding: 16px;
    width: 100%;
  }
  #products .sec_products__item_half h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #products .sec_products__item_half h2 span {
    font-size: 1.8rem;
    margin-left: 15px;
  }
  #products .sec_products__item_half .items {
    display: block;
  }
  #products .sec_products__item_half .items > li {
    width: 100%;
    display: block;
    padding: 20px 0;
  }
  #products .sec_products__item_half .items > li:not(:last-child) {
    border-bottom: solid 1px #BABABA;
  }
  #products .sec_products__item_half .items > li:nth-child(odd) {
    padding: 20px 0;
    border-right: none;
  }
  #products .sec_products__item_half .items > li:nth-child(even) {
    padding: 20px 0;
  }
  #products .sec_products__item_half .items > li figure {
    width: 100%;
    max-width: 210px;
    margin: 0 auto 10px;
  }
  #products .sec_products__item_half .items > li .info {
    width: 100%;
    max-width: 100%;
  }
  #products .sec_products__item_half .items > li .info .links {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  #products .sec_products__item_half .items > li .info .links a {
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
    padding-right: 30px;
  }
  #products .sec_products__item_half .items > li .info .links a::after {
    content: "";
    position: absolute;
    right: 8px;
    top: calc(50% - 3.5px);
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
    display: none;
  }
  #products .sec_products__item_half .items > li .info .links a::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 4px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  #products .sec_products__item_half .items > li .info .links a::before {
    width: 23px;
    height: 23px;
    background-size: contain;
  }
  #products .sec_products__item_half .items > li .info .links a::after {
    top: 12px;
  }
  #products .sec_products__item_half .items > li .info .links .more {
    width: 100%;
    text-align: right;
  }
  #products .sec_products__item_half .items > li .info .links .more a {
    color: #37CAEF;
  }
  #products .sec_products__item_half .items > li .info .links .order a {
    color: #7ECEE2;
  }
  #products .sec_products__item_half .items > li .info .links .order a::before {
    background-image: url(../img/common/maru_s.png);
    background-size: contain;
  }
  #products .sec_products__item_half .items > li .info .links .case a {
    color: #AEAEAE;
  }
  #products .sec_products__item_half .items > li .info .links .case a::before {
    background-image: url(../img/common/maru_g.png);
    background-size: contain;
  }
  #products .sec_products__item_half .items h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #37CAEF;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #products .sec_products__item_half .items h3 span {
    font-size: 1.8rem;
  }
}

#products_detail main {
  padding-top: 150px;
}
@media only screen and (max-width: 1023px) {
  #products_detail main {
    padding-top: 64px;
  }
}
#products_detail .sec_detail_ttl {
  background: rgb(232, 251, 255);
  background: linear-gradient(315deg, rgb(254, 255, 217) 0%, rgb(232, 251, 255) 100%);
}
#products_detail .sec_detail_ttl .sec_in {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  padding: 40px 50px 40px;
}
#products_detail .sec_detail_ttl .txt_area {
  width: 400px;
}
#products_detail .sec_detail_ttl .txt_area .sub_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #020202;
  margin-bottom: 25px;
}
#products_detail .sec_detail_ttl .txt_area h1 {
  color: #37CAEF;
  font-size: 4rem;
  margin-bottom: 25px;
}
#products_detail .sec_detail_ttl .txt_area h1 span {
  font-size: 2.8rem;
}
#products_detail .sec_detail_ttl figure {
  width: calc(100% - 400px);
  max-width: 590px;
}
#products_detail .sec_detail_ttl.type02 figure {
  width: calc(100% - 400px);
  max-width: 400px;
}
@media only screen and (max-width: 1023px) {
  #products_detail .sec_detail_ttl {
    background: linear-gradient(rgb(232, 251, 255) 0%, rgb(254, 255, 217) 100%);
  }
  #products_detail .sec_detail_ttl .sec_in {
    display: block;
    padding: 20px;
  }
  #products_detail .sec_detail_ttl .txt_area {
    width: 100%;
    margin-bottom: 20px;
  }
  #products_detail .sec_detail_ttl .txt_area .sub_ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #products_detail .sec_detail_ttl .txt_area h1 {
    color: #37CAEF;
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  #products_detail .sec_detail_ttl .txt_area h1 span {
    font-size: 1.8rem;
  }
  #products_detail .sec_detail_ttl figure {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto;
  }
}
#products_detail .sec_feature {
  padding: 50px 0 20px;
}
#products_detail .sec_feature .pro_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
#products_detail .sec_feature h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 50px;
}
#products_detail .sec_feature__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
#products_detail .sec_feature__box h3 {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #ECF5F8;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
#products_detail .sec_feature__box h3 span {
  font-weight: 400;
  color: #37CAEF;
  font-family: "Abel", sans-serif;
  display: block;
}
#products_detail .sec_feature__box h4 {
  font-size: 2.4rem;
  font-weight: bold;
  width: 100%;
  background: none;
  text-align: left;
  max-width: 583px;
  margin: 0 auto 20px;
  display: inline-block;
  height: auto;
}
#products_detail .sec_feature__box dl {
  width: calc(100% - 300px);
}
#products_detail .sec_feature__box dl dt {
  font-size: 2rem;
  font-weight: bold;
  color: #37CAEF;
  margin-bottom: 10px;
}
#products_detail .sec_feature__box dl dd:not(:last-child) {
  margin-bottom: 25px;
}
#products_detail .sec_feature__box .dl {
  width: 550px !important;
}
#products_detail .sec_feature__box .dl dt {
  font-size: 2rem;
  font-weight: bold;
  color: #37CAEF;
  margin-bottom: 10px;
}
#products_detail .sec_feature__box .dl dd:not(:last-child) {
  margin-bottom: 25px;
}
#products_detail .sec_feature__box ul {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#products_detail .sec_feature__box ul li {
  max-width: 190px;
  width: 17.2727272727%;
  text-align: center;
}
#products_detail .sec_feature__box ul li figcaption {
  margin-top: 10px;
}
#products_detail .sec_feature__box:nth-child(odd) {
  padding: 0 50px 0 60px;
}
#products_detail .sec_feature__box:nth-child(odd) h3 {
  order: 2;
}
#products_detail .sec_feature__box:nth-child(odd) dl {
  order: 1;
}
#products_detail .sec_feature__box.onecolumn {
  padding: 0;
}
#products_detail .sec_feature__box.onecolumn dl {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
#products_detail .sec_feature__box.onecolumn dl h3 {
  order: 1;
}
#products_detail .sec_feature__box.onecolumn dl dl {
  order: 2;
}
#products_detail .sec_feature__box.onecolumns {
  padding: 0;
}
#products_detail .sec_feature__box.onecolumns dl h3 {
  order: 1;
}
#products_detail .sec_feature__box.onecolumns dl dl {
  order: 2;
}
@media only screen and (max-width: 1023px) {
  #products_detail .sec_feature {
    padding: 50px 0 40px;
  }
  #products_detail .sec_feature h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  #products_detail .sec_feature__box {
    display: block;
    margin-bottom: 30px;
  }
  #products_detail .sec_feature__box h3 {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    font-size: 2rem;
  }
  #products_detail .sec_feature__box h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    width: 550px;
  }
  #products_detail .sec_feature__box dl {
    width: 100%;
  }
  #products_detail .sec_feature__box dl dt {
    font-size: 1.8rem;
  }
  #products_detail .sec_feature__box ul {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 2%;
  }
  #products_detail .sec_feature__box ul li {
    width: 32%;
  }
  #products_detail .sec_feature__box ul li figcaption {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  #products_detail .sec_feature__box:nth-child(odd) {
    padding: 0;
  }
}
#products_detail .sec_spec {
  padding: 70px 0 80px;
  background: #F2F2F2;
}
#products_detail .sec_spec h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 50px;
}
#products_detail .sec_spec h3 {
  max-width: 840px;
  margin: 0 auto;
  font-size: 2rem;
  color: #37CAEF;
  font-weight: bold;
  margin-bottom: 30px;
  padding-left: 10px;
}
@media only screen and (max-width: 1023px) {
  #products_detail .sec_spec h3 {
    padding-left: 0px;
  }
}
#products_detail .sec_spec__box:not(:last-of-type) {
  margin-bottom: 50px;
}
#products_detail .sec_spec dl {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  border-top: solid 1px #C4C4C4;
}
#products_detail .sec_spec dl:last-of-type {
  border-bottom: solid 1px #C4C4C4;
}
#products_detail .sec_spec dl dt {
  width: 220px;
  padding-left: 15px;
  font-size: 1.8rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 15px;
}
#products_detail .sec_spec dl dd {
  width: calc(100% - 220px);
  font-size: 1.8rem;
}
@media only screen and (max-width: 1023px) {
  #products_detail .sec_spec {
    padding: 30px 0 60px;
  }
  #products_detail .sec_spec h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  #products_detail .sec_spec dl {
    padding: 15px 0;
    display: block;
  }
  #products_detail .sec_spec dl dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #products_detail .sec_spec dl dt span {
    font-size: 1.2rem;
  }
  #products_detail .sec_spec dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
}
#products_detail .sec_related {
  padding: 70px 0 0;
}
#products_detail .sec_related__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  background: #F4FBFD;
  border-radius: 10px;
  padding: 32px;
}
#products_detail .sec_related__box h2 {
  font-size: 2.4rem;
}
#products_detail .sec_related__box .item {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
#products_detail .sec_related__box .item:not(:last-child) {
  margin-bottom: 50px;
}
#products_detail .sec_related__box .item figure {
  max-width: 200px;
  margin-right: 40px;
}
#products_detail .sec_related__box .item .txt {
  width: calc(100% - 240px);
}
#products_detail .sec_related__box .item .txt h3 {
  font-size: 2.4rem;
  color: #37CAEF;
  font-weight: bold;
  margin-bottom: 15px;
}
#products_detail .sec_related__box .item .txt h3 span {
  font-size: 1.6rem;
}
#products_detail .sec_related__box .item .link {
  width: 100%;
  margin-top: 45px;
  text-align: right;
}
#products_detail .sec_related__box .item .link a {
  color: #37CAEF;
  font-weight: bold;
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
  padding-right: 30px;
}
#products_detail .sec_related__box .item .link a::after {
  content: "";
  position: absolute;
  right: 7px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  display: none;
}
#products_detail .sec_related__box .item .link a::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#products_detail .sec_related__box .item .link a::before {
  width: 20px;
  height: 20px;
  top: 3px;
}
@media only screen and (max-width: 1023px) {
  #products_detail .sec_related {
    padding: 50px 0 20px;
  }
  #products_detail .sec_related__box {
    display: block;
    padding: 16px;
  }
  #products_detail .sec_related__box h2 {
    font-size: 2.4rem;
    text-align: center;
  }
  #products_detail .sec_related__box .item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
  }
  #products_detail .sec_related__box .item:not(:last-child) {
    margin-bottom: 30px;
  }
  #products_detail .sec_related__box .item figure {
    max-width: 100px;
    margin-right: 20px;
  }
  #products_detail .sec_related__box .item .txt {
    width: calc(100% - 120px);
  }
  #products_detail .sec_related__box .item .txt h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #products_detail .sec_related__box .item .txt h3 span {
    font-size: 1.4rem;
  }
  #products_detail .sec_related__box .item .link {
    margin-top: 25px;
  }
}

#order {
  /*
  .sec_related{
      padding: 70px 0 0;

      &__box{
          @include flex(b,n);
          align-items: center;
          background: #F4FBFD;
          border-radius: 10px;
          padding: 32px;
          h2{
              @include fs(2.4);
          }

          .item{
              @include flex(s,w);
              align-items: center;
              &:not(:last-child){
                  margin-bottom: 50px;
              }
              figure{
                  max-width: 200px;
                  margin-right: 40px;
              }

              .txt{
                  width: calc(100% - 240px);
                  h3{
                      @include fs(2.4);
                      color: $s1_color;
                      font-weight: bold;
                      margin-bottom: 15px;
                      span{
                          @include fs(1.6);
                      }
                  }
              }

              .link{
                  width: 100%;
                  margin-top: 45px;
                  text-align: right;

                  a{
                      color: $s1_color;
                      font-weight: bold;
                      @include arrow(6,7);
                      padding-right: 30px;

                      &::before{
                          width: 20px;
                          height: 20px;
                          top: 3px;
                      }
                  }
              }
          }

      }


      @include media(sp){
          padding: 50px 0 20px;        

          &__box{
              display: block;
              padding: 16px;
              h2{
                  @include fs(2.4);
                  text-align: center;
              }

              .item{
                  @include flex(s,w);
                  align-items: center;
                  &:not(:last-child){
                      margin-bottom: 30px;
                  }
                  figure{
                      max-width: 100px;
                      margin-right: 20px;
                  }    
                  .txt{
                      width: calc(100% - 120px);
                      h3{
                          @include fs(2);
                          margin-bottom: 15px;
                          span{
                              @include fs(1.4);
                          }
                      }
                  }

                  .link{
                      margin-top: 25px;
                  }
              }    
          }        
      }
  }
  */
}
#order .sec_contact {
  display: none;
}
#order.thanks .sec_btm_contact {
  display: block;
}
#order footer .fl_btn {
  display: none;
}
#order footer .sec_btm_contact {
  display: none;
}
#order main {
  padding-top: 150px;
}
@media only screen and (max-width: 1023px) {
  #order main {
    padding-top: 64px;
  }
}
#order .sec_order_ttl {
  background: rgb(232, 251, 255);
  background: linear-gradient(315deg, rgb(254, 255, 217) 0%, rgb(232, 251, 255) 100%);
}
#order .sec_order_ttl .sec_in {
  max-width: 1100px;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  padding: 20px 0 15px;
  gap: 30px;
}
#order .sec_order_ttl .txt_area h1 {
  color: #37CAEF;
  font-size: 4rem;
  margin-bottom: 15px;
}
#order .sec_order_ttl figure {
  max-width: 300px;
  margin-right: 60px;
}
@media only screen and (max-width: 1023px) {
  #order .sec_order_ttl {
    background: linear-gradient(rgb(232, 251, 255) 0%, rgb(254, 255, 217) 100%);
  }
  #order .sec_order_ttl .sec_in {
    padding: 20px;
    display: block;
  }
  #order .sec_order_ttl .txt_area {
    /* padding-right: 15px; */
    width: 100%;
    margin-bottom: 20px;
  }
  #order .sec_order_ttl .txt_area h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  #order .sec_order_ttl figure {
    /* max-width: 150px; 
    margin: 0; */
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto;
  }
}
#order .sec_order {
  padding: 50px 0 20px;
}
#order .sec_order.confirm {
  padding: 0 0 50px;
  max-width: 940px;
  margin: 0 auto;
}
#order .sec_order .cart_top {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 30px;
}
#order .sec_order .cart_top .guide {
  padding-left: 30px;
  background: url(../img/order/icon_guide.svg) left center no-repeat;
  background-size: 18px auto;
}
#order .sec_order .cart_top .cart {
  display: inline-block;
  color: #37CAEF;
  font-weight: bold;
  padding: 10px 25px 10px 65px;
  background: url(../img/order/icon_cart.svg) left 25px center no-repeat;
  background-size: 21px auto;
  border: solid 1px #37CAEF;
  border-radius: 25px;
  margin: 0 0 0 30px;
}
#order .sec_order .cart_top .cart span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  background: #0E758E;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 -10px 0 10px;
  display: inline-block;
  padding: 4px 0 0;
  text-align: center;
}
#order .sec_order h2 {
  color: #0E758E;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0 0 5px 10px;
  margin-bottom: 50px;
  border-bottom: solid 2px #37CAEF;
}
#order .sec_order h3 {
  margin-bottom: 20px;
}
#order .sec_order .item_wrap {
  gap: 65px 4%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 70px;
}
#order .sec_order .item_wrap > div {
  max-width: 240px;
  width: 21.8181818182%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#order .sec_order .item_wrap > div .info_wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
#order .sec_order .item_wrap > div .info_wrap .txt {
  flex-grow: 1;
}
#order .sec_order .item_wrap > div h4 {
  border-left: solid 6px #0DB8E3;
  padding-left: 15px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
#order .sec_order .item_wrap > div h4 span {
  display: block;
  color: #0E758E;
  font-size: 1.6rem;
  font-weight: bold;
}
#order .sec_order .item_wrap > div figure {
  margin-bottom: 20px;
}
#order .sec_order .item_wrap > div p {
  padding: 0 10px;
  margin-bottom: 5px;
}
#order .sec_order .item_wrap > div .note {
  font-size: 1.4rem;
}
#order .sec_order .item_wrap > div .inputs {
  padding: 0 10px;
  width: 100%;
}
#order .sec_order .item_wrap > div .inputs dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
#order .sec_order .item_wrap > div .inputs dl dd {
  text-align: right;
}
#order .sec_order .item_wrap > div .inputs dl dd .number_wrap {
  position: relative;
}
#order .sec_order .item_wrap > div .inputs dl dd .number_wrap::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-right: solid 2px #B6B6B6;
  border-bottom: solid 2px #B6B6B6;
  rotate: 45deg;
}
#order .sec_order .item_wrap > div .inputs dl dd select {
  width: 90px;
  height: 40px;
  padding: 10px;
  border: solid 1px #808080;
  margin-right: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#order .sec_order .item_wrap > div .inputs .cart_btn {
  padding: 0;
}
#order .sec_order .item_wrap > div .inputs .cart_btn input {
  text-align: left;
  font-size: calc(1.25 * var(--vw));
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: bold;
  padding: 5px 10px 8px 60px;
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: url(../img/order/icon_cart_w.svg) left 23px center no-repeat #54C5E2;
  background-size: 21px auto;
  cursor: pointer;
  transition: 0.3s;
}
#order .sec_order .item_wrap > div .inputs .cart_btn input:hover {
  opacity: 0.8;
}
#order .sec_order .cart_table {
  width: 100%;
}
#order .sec_order .cart_table thead th {
  color: #0E758E;
  padding: 15px 10px;
  text-align: center;
  background: #ECF5F8;
  font-size: 1.4rem;
}
#order .sec_order .cart_table thead th:not(:last-child) {
  border-right: solid 6px #fff;
}
#order .sec_order .cart_table tbody tr {
  border-bottom: solid 1px #989898;
}
#order .sec_order .cart_table tbody tr td {
  padding: 15px 10px;
  vertical-align: middle;
}
#order .sec_order .cart_table tbody tr td input {
  width: 75px;
  height: 40px;
  padding: 10px;
  border: solid 1px #808080;
  margin-right: 5px;
}
#order .sec_order .cart_table tbody tr td a {
  color: #fff;
  font-weight: bold;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  width: 64px;
  border-radius: 10px;
  text-align: center;
  padding: 8px 10px;
  display: inline-block;
}
#order .sec_order .cart_table tbody tr td:nth-child(1) {
  max-width: 180px;
  width: 16.3636363636%;
}
#order .sec_order .cart_table tbody tr td:nth-child(2) {
  text-align: center;
  max-width: 120px;
  width: 10.9090909091%;
}
#order .sec_order .cart_table tbody tr td:nth-child(3) {
  max-width: 220px;
  width: 20%;
}
#order .sec_order .cart_table tbody tr td:nth-child(4) {
  text-align: center;
  max-width: 190px;
  width: 17.2727272727%;
}
#order .sec_order .cart_table tbody tr td:nth-child(4) a {
  margin: 10px 0 10px 10px;
}
#order .sec_order .cart_table tbody tr td:nth-child(5) {
  text-align: right;
  max-width: 130px;
  width: 11.8181818182%;
}
#order .sec_order .cart_table tbody tr td:nth-child(6) {
  text-align: right;
  max-width: 130px;
  width: 11.8181818182%;
}
#order .sec_order .cart_table tbody tr td:nth-child(7) {
  text-align: center;
  max-width: 100px;
  width: 9.0909090909%;
}
#order .sec_order .item_total {
  color: #0E758E;
  font-size: 2rem;
  font-weight: bold;
  padding: 32px 20px;
  border-bottom: solid 1px #808080;
  text-align: right;
}
#order .sec_order .item_total span {
  margin-right: 80px;
}
@media only screen and (max-width: 1023px) {
  #order .sec_order {
    padding: 30px 0 40px;
  }
  #order .sec_order .cart_top {
    margin-bottom: 20px;
  }
  #order .sec_order .cart_top .guide {
    padding-left: 25px;
  }
  #order .sec_order .cart_top .cart {
    padding: 10px 25px 10px 55px;
    margin: 0 0 0 20px;
  }
  #order .sec_order h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #order .sec_order h3 {
    margin-bottom: 20px;
  }
  #order .sec_order .item_wrap {
    gap: 45px 4%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  #order .sec_order .item_wrap > div {
    max-width: 48%;
    width: 48%;
  }
  #order .sec_order .item_wrap > div h4 {
    padding-left: 10px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #order .sec_order .item_wrap > div h4 span {
    font-size: 1.4rem;
  }
  #order .sec_order .item_wrap > div figure {
    margin-bottom: 10px;
  }
  #order .sec_order .item_wrap > div p {
    padding: 0 5px;
    margin-bottom: 5px;
  }
  #order .sec_order .item_wrap > div .note {
    font-size: 1.2rem;
  }
  #order .sec_order .item_wrap > div .inputs {
    padding: 0 5px;
    width: 100%;
  }
  #order .sec_order .item_wrap > div .inputs dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
  }
  #order .sec_order .item_wrap > div .inputs dl dd .number_wrap::before {
    right: 20px;
    top: 5px;
  }
  #order .sec_order .item_wrap > div .inputs dl dd select {
    height: 30px;
    padding: 5px 10px;
    margin-right: 5px;
  }
  #order .sec_order .item_wrap > div .inputs .cart_btn {
    padding: 0;
    display: flex;
    justify-content: center;
  }
  #order .sec_order .item_wrap > div .inputs .cart_btn input {
    width: initial !important;
    font-size: 1.4rem;
    padding: 5px 15px 5px 45px;
    background: url(../img/order/icon_cart_w.svg) left 15px center no-repeat #54C5E2;
  }
  #order .sec_order .cart_table {
    width: 100%;
    margin-top: -20px;
  }
  #order .sec_order .cart_table thead {
    display: none;
  }
  #order .sec_order .cart_table tbody tr {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding: 20px 0 10px;
  }
  #order .sec_order .cart_table tbody tr td {
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(1) {
    max-width: 150px;
    width: 40%;
    order: 1;
    position: absolute;
    left: 0;
    top: 20px;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(2), #order .sec_order .cart_table tbody tr td:nth-child(3), #order .sec_order .cart_table tbody tr td:nth-child(5), #order .sec_order .cart_table tbody tr td:nth-child(6) {
    max-width: calc(100% - 160px);
    width: 55%;
    margin-left: auto;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(2) {
    order: 2;
    text-align: left !important;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(3) {
    order: 3;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(4) {
    max-width: 75%;
    width: 75%;
    order: 6;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(4) a {
    margin: 10px 0 10px 10px;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(5) {
    order: 4;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(6) {
    order: 5;
  }
  #order .sec_order .cart_table tbody tr td:nth-child(7) {
    max-width: 25%;
    width: 25%;
    order: 7;
    justify-content: flex-end;
  }
  #order .sec_order .item_total {
    font-size: 1.8rem;
    padding: 16px 10px;
  }
  #order .sec_order .item_total span {
    margin-right: 40px;
  }
}
#order .sec_other_order {
  padding: 0 0 80px;
}
#order .sec_other_order .other_order {
  padding: 32px;
  border-radius: 10px;
  background-color: #EDFBFF;
}
#order .sec_other_order .other_order h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#order .sec_other_order .other_order ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
#order .sec_other_order .other_order ul .tel,
#order .sec_other_order .other_order ul .fax {
  font-size: 3.4rem;
  color: #54C5E2;
  font-weight: "Abel", sans-serif;
  font-weight: 400;
  padding-left: 65px;
  line-height: 48px;
}
#order .sec_other_order .other_order ul .tel {
  background: url(../img/order/icon_tel.svg) left center no-repeat;
  background-size: 48px auto;
}
#order .sec_other_order .other_order ul .fax {
  background: url(../img/order/icon_fax.svg) left center no-repeat;
  background-size: 48px auto;
}
#order .sec_other_order .other_order ul .dl a {
  width: 260px;
  /*
  font-size: getvwPc(18);
  font-weight: bold;
  background: #EEEEEE;
  @include arrow_f(8,27);
  padding: 18px 60px 18px 35px;
  border-radius: 32px;
  &::before{
      right: 15px;
      //top: 18px;
      top: 17px;
  }
      */
}
#order .sec_other_order .other_order .order-box {
  display: flex;
  justify-content: space-between;
}
#order .sec_other_order .other_order .order-cobox-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  justify-content: center;
}
#order .sec_other_order .other_order .order-cobox-left ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#order .sec_other_order .other_order .order-cobox-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 38%;
}
#order .sec_other_order .other_order .order-cobox-right ul {
  width: 100%;
  margin-bottom: 20px;
  justify-content: center !important;
}
@media only screen and (max-width: 1023px) {
  #order .sec_other_order {
    padding: 0 0 40px;
  }
  #order .sec_other_order .other_order {
    padding: 32px 16px;
  }
  #order .sec_other_order .other_order h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  #order .sec_other_order .other_order ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
  #order .sec_other_order .other_order ul .tel,
  #order .sec_other_order .other_order ul .fax {
    font-size: 2.4rem;
    padding-left: 50px;
    line-height: 40px;
  }
  #order .sec_other_order .other_order ul .tel {
    background-size: 40px auto;
  }
  #order .sec_other_order .other_order ul .fax {
    background-size: 40px auto;
  }
  #order .sec_other_order .other_order ul .dl {
    margin: 0 auto;
  }
  #order .sec_other_order .other_order ul .dl a {
    width: 260px;
    /*
    @include fs(1.6);
    &::before{
        right: 15px;
        top: 16px;
    }
        */
  }
  #order .sec_other_order .other_order .order-box {
    flex-direction: column;
  }
  #order .sec_other_order .other_order .order-cobox-left {
    width: 100%;
    justify-content: center;
  }
  #order .sec_other_order .other_order .order-cobox-left ul {
    justify-content: center;
  }
  #order .sec_other_order .other_order .order-cobox-right {
    width: 100%;
    margin-top: 50px;
  }
}
#order .sec_order_form {
  padding: 80px 0 135px;
}
#order .sec_order_form h2 {
  color: #0E758E;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0 0 5px 10px;
  margin-bottom: 50px;
  border-bottom: solid 2px #37CAEF;
}
#order .sec_order_form__txt {
  max-width: 840px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
#order .sec_order_form__txt a {
  display: inline;
  color: #37CAEF;
  text-decoration: underline;
}
#order .sec_order_form__txt_of {
  max-width: 840px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
@media only screen and (max-width: 1023px) {
  #order .sec_order_form__txt_of {
    margin: 0 auto 30px;
    padding: 0 15px 20px 15px;
    border-bottom: solid 1px #808080;
  }
}
#order .sec_order_form__txt_of a {
  display: inline;
  color: #37CAEF;
  text-decoration: underline;
}

#guide .sec_guide {
  padding: 30px 0 135px;
}
#guide .sec_guide__item {
  border-radius: 10px;
  border: solid 3px #37CAEF;
  padding: 32px;
}
#guide .sec_guide__item:not(:last-of-type) {
  margin-bottom: 50px;
}
#guide .sec_guide__item h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#guide .sec_guide__item h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  border-left: solid 5px #37CAEF;
  padding-left: 10px;
}
#guide .sec_guide__item p:not(:last-of-type) {
  margin-bottom: 30px;
}
#guide .sec_guide__item p a {
  display: inline;
  color: #37CAEF;
  text-decoration: underline;
}
#guide .sec_guide__item ul li {
  list-style-type: disc;
  margin: 5px 0 0 20px;
}
@media only screen and (max-width: 1023px) {
  #guide .sec_guide {
    padding: 30px 0 60px;
  }
  #guide .sec_guide__item {
    padding: 16px;
  }
  #guide .sec_guide__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  #guide .sec_guide__item h2 {
    font-size: 2rem;
  }
  #guide .sec_guide__item h3 {
    font-size: 1.8rem;
  }
}

#recruit .sec_recruit {
  padding: 30px 0 100px;
}
#recruit .sec_recruit__box:not(:last-of-type) {
  margin-bottom: 80px;
}
#recruit .sec_recruit__box h2 {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 0 0 15px;
  max-width: 840px;
  margin: 0 auto 20px;
}
#recruit .sec_recruit__box .txtbox {
  max-width: 840px;
  padding: 0 15px;
  margin: 0 auto;
}
#recruit .sec_recruit__box .txtbox p:not(:last-of-type) {
  margin-bottom: 10px;
}
#recruit .sec_recruit__box .txtbox a {
  display: inline;
  color: #37CAEF;
}
#recruit .sec_recruit__box dl {
  max-width: 840px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  border-top: solid 1px #C4C4C4;
}
#recruit .sec_recruit__box dl:last-of-type {
  border-bottom: solid 1px #C4C4C4;
}
#recruit .sec_recruit__box dl dt {
  width: 220px;
  padding-left: 15px;
  font-size: 1.8rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 15px;
}
#recruit .sec_recruit__box dl dd {
  width: calc(100% - 220px);
  font-size: 1.8rem;
}
#recruit .sec_recruit__box dl dd ol li {
  list-style-type: decimal;
  margin-left: 20px;
}
#recruit .sec_recruit__box dl dd ol li:not(:last-of-type) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  #recruit .sec_recruit {
    padding: 30px 0 0px;
  }
  #recruit .sec_recruit__box:not(:last-of-type) {
    margin-bottom: 40px;
  }
  #recruit .sec_recruit__box h2 {
    font-size: 2rem;
    padding: 0 15px;
    margin: 0 auto 15px;
  }
  #recruit .sec_recruit__box .txtbox {
    padding: 0 15px;
  }
  #recruit .sec_recruit__box dl {
    padding: 15px;
    display: block;
  }
  #recruit .sec_recruit__box dl dt {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #recruit .sec_recruit__box dl dt span {
    font-size: 1.2rem;
  }
  #recruit .sec_recruit__box dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
}
#recruit .sec_access {
  padding: 70px 0 65px;
  background: #F2F2F2;
}
#recruit .sec_access .sec_in {
  max-width: 940px;
}
#recruit .sec_access h2 {
  font-size: 3.2rem;
  margin-bottom: 40px;
  text-align: center;
}
#recruit .sec_access .map {
  margin-bottom: 25px;
}
#recruit .sec_access .map iframe {
  width: 100%;
  height: 300px;
}
#recruit .sec_access .zip {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#recruit .sec_access .access {
  padding-left: 30px;
  background: url(../img/company/icon01.svg) left top no-repeat;
  background-size: 16px auto;
}
@media only screen and (max-width: 1023px) {
  #recruit .sec_access {
    padding: 30px 0 60px;
  }
  #recruit .sec_access h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #recruit .sec_access .map {
    margin-bottom: 20px;
  }
  #recruit .sec_access .map iframe {
    height: 200px;
  }
  #recruit .sec_access .zip {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
#recruit .sec_guideline {
  padding: 30px 0 135px;
}
#recruit .sec_guideline__txt {
  max-width: 840px;
  line-height: 1.8;
  margin: 0 auto 64px;
}
#recruit .sec_guideline__link {
  max-width: 840px;
  margin: 0 auto;
  border: solid 3px #37CAEF;
  border-radius: 10px;
  padding: 40px 45px;
}
#recruit .sec_guideline__link li {
  list-style-type: disc;
  margin-left: 20px;
}
#recruit .sec_guideline__link li:not(:last-child) {
  margin-bottom: 50px;
}
#recruit .sec_guideline__link li a {
  font-size: 2rem;
  padding-right: 35px;
  padding-bottom: 5px;
  color: #0DB8E3;
  display: inline;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
#recruit .sec_guideline__link li a.pdf {
  background: url(../img/company/icon_pdf.svg) right top no-repeat;
  background-size: 28px auto;
}
@media only screen and (max-width: 1023px) {
  #recruit .sec_guideline {
    padding: 30px 0 60px;
  }
  #recruit .sec_guideline__txt {
    margin: 0 auto 30px;
  }
  #recruit .sec_guideline__link {
    padding: 20px;
  }
  #recruit .sec_guideline__link li {
    margin-left: 20px;
  }
  #recruit .sec_guideline__link li:not(:last-child) {
    margin-bottom: 25px;
  }
  #recruit .sec_guideline__link li a {
    font-size: 1.8rem;
  }
  #recruit .sec_guideline__link li a.pdf {
    background-size: 26px auto;
  }
}
#recruit .sec_terms {
  padding: 30px 0 135px;
}
#recruit .sec_terms__terms {
  max-width: 840px;
  margin: 0 auto 80px;
  padding: 32px;
  border: solid 1px #CBCBCB;
}
#recruit .sec_terms__terms h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
#recruit .sec_terms__terms .read {
  margin-bottom: 40px;
  line-height: 1.8;
}
#recruit .sec_terms__terms ol > li {
  list-style-type: decimal;
  vertical-align: top;
  margin-left: 20px;
  line-height: 1.8;
}
#recruit .sec_terms__terms ol > li:not(:last-child) {
  margin-bottom: 40px;
}
#recruit .sec_terms__terms ol > li ul {
  margin-left: -20px;
}
#recruit .sec_terms__terms ol > li ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
  line-height: 1.8;
}
#recruit .sec_terms__terms ol > li ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1px;
}
#recruit .sec_terms__agree {
  max-width: 840px;
  margin: 0 auto;
  background: #F2F2F2;
  padding: 40px;
}
#recruit .sec_terms__agree label {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 40px;
}
#recruit .sec_terms__agree label input {
  margin-right: 10px;
  appearance: none;
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #C4C4C4;
  background: #fff;
}
#recruit .sec_terms__agree label input:checked {
  background: #54C5E2;
}
#recruit .sec_terms__agree label input:checked:before {
  content: "";
  position: absolute;
  transform: rotate(50deg);
  top: 2px;
  left: 10px;
  width: 4px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#recruit .sec_terms__agree .agree_btn {
  font-size: 2rem;
  color: #fff;
  width: 320px;
  text-align: center;
  margin: 0 auto;
  padding: 15px 0;
  background: #C3C3C3;
  border-radius: 32px;
  pointer-events: none;
  transition: 0.3s;
}
#recruit .sec_terms__agree .agree_btn.active {
  pointer-events: auto;
  background: linear-gradient(315deg, rgb(126, 206, 226) 0%, rgb(84, 197, 226) 100%);
  position: relative;
  /*
  &:hover{
    &::after{
      right: $arrow-right - 5px;
    }
  } 
  */
}
#recruit .sec_terms__agree .agree_btn.active::after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
#recruit .sec_terms__agree .agree_btn.active::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 5px;
  border-radius: 50%;
  background-image: url(../img/common/maru.png);
  background-size: contain;
}
#recruit .sec_terms__agree .agree_btn.active::before {
  background: #fff;
  right: 20px;
  top: 17px;
}
#recruit .sec_terms__agree .agree_btn.active::after {
  border-color: #37CAEF;
}
@media only screen and (max-width: 1023px) {
  #recruit .sec_terms {
    padding: 30px 0 60px;
  }
  #recruit .sec_terms__terms {
    margin: 0 auto 40px;
    padding: 16px;
  }
  #recruit .sec_terms__terms h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #recruit .sec_terms__terms .read {
    margin-bottom: 20px;
  }
  #recruit .sec_terms__terms ol > li:not(:last-child) {
    margin-bottom: 20px;
  }
  #recruit .sec_terms__agree {
    margin: 0 auto;
    background: #F2F2F2;
    padding: 20px;
  }
  #recruit .sec_terms__agree label {
    margin-bottom: 20px;
  }
  #recruit .sec_terms__agree .agree_btn {
    font-size: 1.6rem;
    color: #fff;
    max-width: 320px;
    width: 100%;
  }
  #recruit .sec_terms__agree .agree_btn.active {
    position: relative;
    /*
    &:hover{
      &::after{
        right: $arrow-right - 5px;
      }
    } 
    */
  }
  #recruit .sec_terms__agree .agree_btn.active::after {
    content: "";
    position: absolute;
    right: 32px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  #recruit .sec_terms__agree .agree_btn.active::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 5px;
    border-radius: 50%;
    background-image: url(../img/common/maru.png);
    background-size: contain;
  }
  #recruit .sec_terms__agree .agree_btn.active::before {
    background: #fff;
    right: 20px;
    top: 12px;
  }
  #recruit .sec_terms__agree .agree_btn.active::after {
    top: 21px;
    border-color: #37CAEF;
  }
}

#privacy .sec_privacy {
  padding: 30px 0 100px;
}
#privacy .sec_privacy__box {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px;
  border: solid 1px #CBCBCB;
}
#privacy .sec_privacy__box h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
#privacy .sec_privacy__box .read {
  margin-bottom: 40px;
  line-height: 1.8;
}
#privacy .sec_privacy__box ol > li {
  list-style-type: decimal;
  vertical-align: top;
  margin-left: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  #privacy .sec_privacy {
    padding: 30px 0 0;
  }
  #privacy .sec_privacy__box {
    margin: 0 auto 40px;
    padding: 16px;
  }
  #privacy .sec_privacy__box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #privacy .sec_privacy__box .read {
    margin-bottom: 20px;
  }
  #privacy .sec_privacy__box ol > li:not(:last-child) {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */