/*
    カート
*/
/* 価格部分 */
.cart_price span:after {
  content: '円';
}
/*
.cart_price p:after {
  content: "（税込）";
  font-size: 14px;
  font-weight: 400;
}
*/
.cart_price.option span:before {
  content: '＋';
}
.cart_price_wrapper {
  padding: 0 20px;
}
.cart_price.option {
  text-align: left;
  font-size: 14px;
  padding: 10.5px 0 10.5px;
  border-top: solid 1px #c3c7ce;
  width: 100%;
  position: relative;
}
.cart_price > div {
  align-items: center;
  display: flex;
}
.cart_price a {
  color: #5c72cc;
  font-size: 14px;
}
.cart_price .text-center {
  display: flex;
  align-items: center;
}
.cart_price p.text-center:after {
  content: none;
}
.cart_price .text-center span:after {
  content: '円（税込）';
}

@media screen and (max-width: 768px) {
  .cart_price_wrapper {
      padding: 0 5.33vw;
  }
  .cart_price {
      font-size: 15px;
  }
  .cart_price:nth-of-type(2) {
      border-bottom: solid 1px #c3c7ce;
  }
  .cart_price a {
      font-size: 15px;
      display: flex;
      align-items: center;
  }
}

/* カートボタン */
.cart_button {
  background-color: #5c72cc;
  border-radius: 26px;
  color: #ffffff;
  font-size: 15px;
  width: 214px;
  text-align: center;
  height: 52px;
  line-height: 52px;
  position: relative;
  border: none;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}
.cart_button::before {
  /* icon */
  font-family: 'Ionicons';
  font-size: 20px;
  content: '';
  position: absolute;
  left: 19px;
}
.cart_button::after {
  content: 'カートに入れる';
  margin: 0 0 0 20px;
}
.cart_button:hover {
  opacity: 0.8;
}
.cart_button:disabled {
  color: #5e6167;
  background-color: #c3c7ce;
}
.fixed-cart {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 2;
}
.fixed-cart .cart_button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  text-align: center;
}
.fixed-cart .cart_button::before {
  left: 50%;
  top: 10px;
  font-size: 24px;
  transform: translateX(-50%);
  line-height: 1;
}
.fixed-cart .cart_button::after {
  content: 'ご購入';
  line-height: 1.5;
  font-size: 12px;
  margin: 35px 0 0;
  display: inline-block;
}

/*
  tag
*/
body {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}

.pcClass {
  display: block;
}
.spClass {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcClass {
      display: none;
  }
  .spClass {
      display: block;
  }
}
input[type='checkbox'] {
  display: none;
}
.myCheckbox {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0 0 0 30px;
  position: relative;
  width: 100%;
  font-size: 15px;
}
.myCheckbox::before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 4px;
}
.myCheckbox::after {
  border-right: 3px solid #5c72cc;
  border-bottom: 3px solid #5c72cc;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
input[type='checkbox']:checked + .myCheckbox::after {
  opacity: 1;
}
input[type='checkbox']:disabled + .myCheckbox::before {
  background-color: #c3c7ce;
}
.myCheckbox:hover.myCheckbox::before {
  background-color: #eceffb;
}
@media screen and (max-width: 768px) {
  .myCheckbox {
      font-size: 15px;
  }
  .myCheckbox:hover.myCheckbox::before {
      background-color: initial;
  }
}
input[type='radio'] {
  display: none;
}
.myRadio {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0 0 0 30px;
  position: relative;
  width: 100%;
}
.myRadio::before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 50%;
}
.myRadio::after {
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  opacity: 0;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 10px;
  border-radius: 50%;
  background-color: #5c72cc;
}
input[type='Radio']:checked + .myRadio::after {
  opacity: 1;
}
input[type='Radio']:disabled + .myRadio::before {
  background-color: #c3c7ce;
}
.myRadio:hover.myRadio::before {
  background-color: #eceffb;
}
@media screen and (max-width: 768px) {
  .myRadio:hover.myRadio::before {
      background-color: initial;
  }
}

/*
  grid
*/
.grid {
  margin: 0;
  width: 100%;
}
.grid-column {
  margin: 0;
  width: 100%;
}
[class*='col-'],
[class*='col_'],
[class~='col'] {
  padding: 0 0.5rem;
}
[class*='grid-'] > [class*='col-4'],
[class*='grid_'] > [class*='col-4'],
[class~='grid'] > [class*='col-4'] {
  padding: 0 20px 30px;
}
[class*='grid-'] > [class*='col-3'],
[class*='grid_'] > [class*='col-3'],
[class~='grid'] > [class*='col-3'] {
  padding: 0 20px 30px;
}
[class*='col'] {
  min-height: 0%;
}

/*
  header
*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: all 0.3s ease;
  background-color: #fff;
}
.header.passage{
  box-shadow: 0px 3px 4px #00000026;
}
.header__inner[class*=grid] {
  width: 82%;
  max-width: 980px;
  margin: 0 auto;
  height: 75px;
  justify-content: space-between;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__inner .header__logo a {
  margin: 0;
}
.header__logo img {
  margin: 0 0 0 auto;
  width: 154px;
  height: auto;
}
.header__nav {
  position: relative;
}
.header__nav-list {
  align-items: flex-end;
  pointer-events: none;
}
.header__nav-link {
  font-size: 15px;
  font-weight: normal;
  padding: 31px 8px 20px;
  color: #000;
  position: relative;
  box-sizing: border-box;
  pointer-events: auto;
}
.header__nav-link--purchase.template-button {
  width: 77px;
  height: auto;
  font-size: 14px;
  padding: 5px 0;
  margin: 11px 0 0;
}
.header__nav-link--purchase::before {
  content: '';
  font-family: 'Ionicons';
  font-size: 15px;
  margin-right: 7px;
}
/*リンクホバー時*/
.header__nav-link:hover {
  color: #5C72CC;
}
/*カレント表示*/
.header__nav-link.js-current {
  color: #5C72CC;
}
/*他のリンクをホバーした時カレントの表示*/
.header__nav-list:hover .js-current {
  color: #000000;
}
/*上記の記述でカレントをホバーした際も適応されてしまうので上書き*/
.header__nav-link.js-current:hover {
  color: #00B3F0;
}
.header__nav-link--purchase:hover {
  color: #fff;
  opacity: 0.7;
}
.header__nav-link.js-hover {
  color: #00B3F0
}
.header__nav-border {
  position: absolute;
  bottom: 1px;
  width: 0;
  left: 0;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background-color: #5C72CC;
  pointer-events: none;
}
.header__nav-border.js-loaded {
  transition-property: left, width;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.global-navigation {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  top: 75px;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 23px 0 40px;
  box-shadow: 0px 4px 5px #00000052;
  transition: opacity 0.3s ease-out;
}
.global-navigation.js-active {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.global-navigation__inner {
  width: 82%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
}
.global-navigation__inner {
  padding: 0 10px 15px;
  pointer-events: none;
}
.global-navigation__box {
  border-radius: 3px;
  border: 1px solid #DFE2E8;
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 20px;
  width: 22%;
  color: #000;
  text-align: left;
  transition: border-color 0.2s ease-in-out;
}
.global-navigation__box:hover {
  border-color: #5C72CC;
}
.global-navigation.js-active .global-navigation__box {
  pointer-events: auto;
}
.global-navigation__box.js-current-item {
  border-color: #5C72CC;
}
.global-navigation__inner:hover .js-current-item {
  border-color: #DFE2E8;
}
.global-navigation__box.js-current-item:hover {
  border-color: #5C72CC;
}
.global-navigation__box--no-margin {
  margin-left: 0;
}
.global-navigation__box--file {
  width: 26%;
}
.global-navigation__image--v2 {
  width: 95px;
  margin: 0 -10px;
}
.global-navigation__image--v1 {
  width: 26px;
}
.global-navigation__image--file {
  width: 69px;

}
.global-navigation__text {
  text-align: left;
}
.global-navigation__feature {
  font-size: 12px;
  color: #000;
}
.global-navigation__name {
  font-size: 14px;
  color: #000;
}
.global-navigation__column {
  width: 20%;
}
.global-navigation__column {
  margin-left: 20px;
}
.global-navigation__column > .global-navigation__box {
  width: 100%;
  margin-bottom: 15px;
  justify-content: flex-start;
  padding-left: 23px;
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .header.hide {
      transform: translateY(-100%);
  }
  .header__inner[class*=grid] {
      justify-content: center;
      height: 54px;
      width: 100%;
  }
  .header__logo img {
      margin: 0 auto;
      width: 112px;
  }
  .header__sp-target {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 14px;
      cursor: pointer;
  }
  .header__sp-purchase {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
  }
  .header__nav-link--purchase.template-button {
      font-size: 12px;
      padding: 3px 0 5px;
      margin-top: 0;
      width: 65px;
  }
  .sp-target__inner {
      position: relative;
      width: 100%;
      height: 100%;
  }
  .sp-target__line {
      width: 100%;
      height: 2px;
      background-color: #00AFEB;
      position: absolute;
      left: 0;
      transform-origin: left;
      transition: 0.3s;
  }
  .sp-target__line:nth-of-type(1) {
      top: 0;
  }
  .sp-target__line:nth-of-type(2) {
      top: 50%;
      transform: translateY(-50%);
  }
  .sp-target__line:nth-of-type(3) {
      bottom: 0;
  }
  .active .sp-target__line:nth-of-type(1) {
      transform: rotate(45deg) translateY(0.5px);
  }
  .active .sp-target__line:nth-of-type(2) {
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
  }
  .active .sp-target__line:nth-of-type(3) {
      transform: rotate(-45deg) translateY(-0.5px);
  }
  .sp-menu {
      display: flex;
      padding: 54px 0 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
      background-color: #fff;
      z-index: 3;
      transform: translateY(-100%);
      transition: 0.3s;
  }
  .active.sp-menu {
      transform: translateY(0);
  }
  .sp-menu__list {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      overflow-y: auto;
  }
  .sp-menu__list--link {
      font-size: 15px;
      color: #000;
      display: inline-block;
      width: 100%;
      padding: 4.26vw 0;
      text-align: center;
      border: none;
      border-bottom: solid 1px #c3c7ce;
      cursor: pointer;
      appearance: none;
      background-color: transparent;
      position: relative;
  }
  .sp-menu__list--link:nth-of-type(1) {
      border-top: solid 1px #ffffff;
  }
  .sp-menu__list-arrow {
      display: flex;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
  }
  .sp-menu__list-arrow--accordion {
      transform: translateY(-50%) rotate(90deg);
  }
  .automemo-feature {
      background-color: #F2F4F6;
      box-shadow: inset 0px 1px 4px #00000029;
      padding: 20px 0 40px;
      width: 100%;
      display: none;
  }
  .automemo-feature__inner {
      padding: 0 40px;
      width: 100%;
      box-sizing: border-box;
  }
  .automemo-feature__content {
      padding: 15px 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-bottom: 1px solid #C3C7CE;
  }
  .automemo-feature__content--text-only {
      justify-content: center;
  }
  .automemo-feature__image {
      width: 115px;
      box-sizing: border-box;
      flex-shrink: 0;
  }
  .automemo-feature__image--v1 {
      padding: 0 36px;
  }
  .automemo-feature__image--file {
      padding: 0 19px;
  }
  .automemo-feature__feature {
      font-size: 12px;
      color: #000;
  }
  .automemo-feature__text {
      font-size: 14px;
      color: #000;
  }
  .automemo-feature__link {
      font-size: 14px;
      color: #000;
  }
}

/*
  main-contents
*/
.main-contents {
  padding-top: 75px;
  position: relative;
  overflow: hidden;
}
.inner {
  width: 82%;
  max-width: 980px;
  margin: 0 auto;
}
.details {
  text-decoration-line: none;
  text-decoration-color: #5c72cc;
  padding: 0 0.5rem;
  position: relative;
  color: #5c72cc;
  align-items: center;
}
.details:hover {
  text-decoration: underline;
}
.details::after {
  content: url('/img_sc/automemo/common/arrow.png');
  margin-left: 0.5rem;
  display: inline-flex;
}

@media screen and (max-width: 768px) {
  .main-contents {
      padding-top: 54px;
  }
  .inner {
      width: 100%;
  }
}

/*
  news
*/
.news {
  padding: 10px 0;
  background-color: #fbb03b;
  text-align: center;
}

/*
  content template
*/
.content h1 {
  font-size: 28px;
}
.content h2 {
  font-size: 28px;
}
.content h3 {
  font-size: 20px;
}
.content p {
  font-size: 15px;
}

/*
  content
*/
.content {
  padding: 40.5px 0 60.5px;
  border-top: solid 1px #888b92;
  align-items: center;
  text-align: center;
}
.content:first-of-type {
  border-top: none;
}
.content .content__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 20px;
}
.content .content__title--no-margin {
  margin-bottom: 0;
}
.content .content__title--small {
  font-size: 22px;
}
.content .content__des {
  font-size: 15px;
  line-height: 1.47;
}
.content .content__des--small {
  font-size: 12px;
}
.content .content__des--bold {
  font-weight: bold;
}
.content .content__img {
  margin: 40px 0 0;
}
.content .content__img--normal {
  width: calc(810 / 980 * 100%);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .content {
      padding: 30px 20px 50px;
      margin: 0 auto;
  }
  .content .content__title {
      font-size: 20px;
      margin: 0 0 20px;
  }
  .content .content__des {
      font-size: 15px;
      text-align: left;
  }
  .content .content__des--center {
      text-align: center;
  }
}

/*
  sub-content
*/
.content .sub-content {
  max-width: 850px;
  width: 100%;
  margin: 60px auto 0;
}
.content .sub-content__item[class*=col] {
  padding: 0 20px;
  font-size: 15px;
}
.content .sub-content__title {
  font-size: 20px;
  font-weight: 700;
}
.content .sub-content__img {
  margin-top: 15px;
}
.content .sub-content__img--small {
  margin-top: 15px;
  padding: 0 69px;
}
.content .sub-content__des {
  text-align: left;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .content .sub-content {
      width: 100%;
      margin: 30px auto 0;
  }
  .content .sub-content__item.col-6 {
      font-size: 15px;
      padding: 0;
  }
  .content .sub-content__title {
      font-size: 16px;
      margin: 9.6vw 0 0;
  }
  .content .sub-content__img {
      padding: 0;
  }
}

/*
  footer
*/
.footer__logo {
  background-color: #5c72cc;
  height: 78px;
}
.footer__logo-inner {
  width: 82%;
  height: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.footer__to-top {
  padding: 5.33vw 0;
  background-color: #5c72cc;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.footer__to-top::before {
  content: '▲';
  color: #ffffff;
  padding: 0 1rem 0 0;
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.footer__contact--title {
  font-size: 18px;
  font-weight: 700;
}
.footer__contact--text {
  font-size: 15px;
  margin: 0 25px;
}
.footer__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  background-color: #f2f4f6;
}
.footer__copy-top {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.footer__copy-top a {
  color: #000000;
  margin: 0 0.5rem;
}
.footer__copy-bottom {
  font-size: 11px;
  margin: 14px 0 0;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .footer__contact {
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 6.66vw 0;
  }
  .footer__contact--title {
      font-size: 16px;
  }
  .footer__contact--text {
      font-size: 15px;
      margin: 10px 0;
  }
  .footer__copy {
      height: auto;
  }
  .footer__copy-top {
      flex-direction: column;
      padding: 8vw 5.33vw;
      font-size: 12px;
  }
  .footer__copy-top a {
      margin: 0;
      line-height: 2.5;
      font-size: 12px;
  }
  .footer__copy-bottom {
      font-size: 11px;
      margin: 0 0 8.53vw;
  }
}

/*
  template item
*/
.btn {
  display: inline-block;
  position: relative;
  border-radius: 23px;
  border: solid 1px #c3c7ce;
  text-decoration: none;
  color: #000000;
  padding: 10px 40px 10px 20px;
  font-size: 15px;
  transition: all 0.3s;
}
.btn::after {
  content: '〉';
  color: #5c72cc;
  right: 13px;
  position: absolute;
}
.btn:hover {
  border-color: #5c72cc;
}
#fixed-to-top {
  color: #5c72cc;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  border: solid 1px #c3c7ce;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
#fixed-to-top:hover {
  border-color: #5c72cc;
}
#fixed-to-top.active {
  opacity: 1;
  pointer-events: all;
}

.template-button {
  border: none;
  cursor: pointer;
  appearance: none;
  background-color: #5c72cc;
  border-radius: 30px;
  box-shadow: 0px 2px 3px #00000029;
  color: #ffffff;
  text-align: center;
  padding: 13px 0;
  display: block;
  margin: 0 auto;
  font-size: 15px;
  font-weight: normal;
  position: relative;
  transition: opacity 0.3s ease;
}
.template-button--white {
  background-color: #fff;
  color: #000;
}
.template-button:hover {
  opacity: 0.8;
}
.template-link {
  border: 1px solid #C3C7CE;
  border-radius: 30px;
  font-size: 15px;
  padding: 11px 45px 11px 25px;
  position: relative;
  color: #000000;
  display: inline-block;
}
.template-link__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  display: flex;
}
.template-link:hover {
  border-color: #5C72CC;
}
@media screen and (max-width: 768px) {
  .template-button:hover {
      opacity: 1;
  }
  .template-link {
      padding: 11px 40px 11px 10px;
  }
  .template-link:hover {
      border-color: #C3C7CE;
  }
}
.inquiry__content {
  margin-top: 40px;
}
.inquiry__content:first-of-type {
  margin-top: 0;
}


.breadcrumb {
  background-color: #F2F4F6;
}
.breadcrumb__inner {
  width: 82%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
}
.breadcrumb__link {
  font-size: 13px;
  text-decoration: none;
  color: #000;
  display: block;
}
.breadcrumb__arrow {
  display: flex;
  margin: 0 16px;
}
.breadcrumb__now {
  font-size: 13px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
      display: none;
  }
}

.header-space {
  height: 75px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-space {
      height: 54px;
      width: 100%;
  }
}