@charset "UTF-8";
@import url(sanitize.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*============================
Base
============================*/
html {
  font-size: 10px;
}

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-family: Avenir, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin: 0;
  line-height: 1;
  background-color: #FFF;
  color: #000;
  box-sizing: border-box;
}
/*/wp-content/themes/ecomic2/_assets/css/style.cssとの衝突回避のため追記*/
table {width: unset;}
h1, h2, h3, h4, h5, h6 { line-height: inherit;}
select { background-image: none;
display: unset;
  height: unset;
  padding: unset;
  background-color: unset;
  border: inset;
  border-radius: unset;
  appearance: auto;
}
/**/
a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all .3s ease;
  cursor: pointer;
}

a:hover {
  opacity: 0.75;
}

::placeholder {
  color: #999;
  font-size: 1.6em;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  vertical-align: bottom
}

a img {
  transition: all .3s ease
}

figure,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h2 {
  color: #004672;
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}

h2 span {
  color: #FD569E;
  font-size: 5.4rem;
  line-height: 1;
}
#main h2 span {
 color: #FD569E;
  font-weight: 900;
  font-family: Avenir, "Noto Sans JP", sans-serif;
  display: inline;
 line-height: 1;
}
@media screen and (min-width:481px) {
 #main h2 span {font-size: 5.4rem;}
}
h2 span small {
  font-size: 3.2rem;
}

p {
  line-height: 1.6;
}

.sp {
  display: none
}

@media screen and (max-width:480px) {
  body {
    font-size: 1.6rem;
  }

  ::placeholder {
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    word-break: break-word;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  h2 span {
    font-size: 4rem;
  }

  h2 span small {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: left;
  }

  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }
}

/*============================
Common
============================*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

p.sub-copy {
  text-align: center;
  margin-bottom: 2.5em;
  line-height: 1.5;
}

.link-contact {
  text-align: center;
  padding: 30px 0;
}

.link-contact a {
  background: #FF6699;
  color: #FFF;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1em 4em;
  border-radius: 50px;
  position: relative;
}

.link-contact a::after {
  content: "";
  background: url(../img/link-arrow.png) no-repeat center center;
  background-size: cover;
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  right: 1em;
  top: calc(50% - 0.5em);
  font-weight: bold;
}

.mailform dl {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mailform dl dt,
.mailform dl dd {
  display: block;
  background: #FFF;
}

.mailform dl dt {
  font-size: 1.5rem;
  font-weight: bold;
  width: 8em;
  padding: 1em;
  position: relative;
  text-align: center;
}

.mailform dl dt i {
  color: #FF6699;
  font-style: normal;
  font-size: 8px;
  position: relative;
  right: -6px;
  top: -8px;
}

.mailform dl dd {
  border-left: 1px solid #D9D9D9;
  width: calc(100% - 6em);
  position: relative;
}

.mailform dl dd input[type="text"],
.mailform dl dd input[type="email"],
.mailform dl dd input[type="tel"] {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 16px;
  padding: 0 0.4em;
  outline: none;
}

.mailform dl dd input[type="checkbox"] {
  border: 1px solid #DDD;
  width: 1.5em;
  height: 1.5em;
  margin-right: 10px;
}

.mailform dl dd select {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 0.4em;
}

.mailform dl dd ul li {
  margin-bottom: 6px;
}

.mailform dl dd ul li label {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.mailform dl.full {
  display: block;
}

.mailform dl.full dt {
  width: 100%;
  text-align: left;
  padding-left: 24px;
}

.mailform dl.full dd {
  border-left: none;
  width: 100%;
}

.mailform dl.full dd ul {
  padding: 20px 20px 10px;
}

.mailform dl.full dd input[type="text"] {
  border: 1px solid #DDD;
  width: calc(100% - 1.5em - 10px);
  margin: 10px 0 0 auto;
  display: block;
  border-radius: 4px;
  padding: 0.25em;
}

.mailform dl.full dd textarea {
  width: 100%;
  height: 10em;
  border: 1px solid #DDD;
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  border-radius: 10px;
  padding: .6em;
}

.mailform .agree {
  margin: 30px 0 20px;
}

.mailform .agree a {
  color: #000;
  text-decoration: underline;
}

.mailform .agree label {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mailform .agree label input {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.5em;
  background: #D9D9D9;
}

.mailform .submit {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50px;
  color: #FFF;
  padding: 1em 4em 1em 3em;
  position: relative;
  background: #FF6699;
  border: none;
  margin: 0 auto;
  width: 360px;
  height: 54px;
  cursor: pointer;
  transition: all 0.3s 0s ease;
  /*transitionの記述を追加*/
}

.mailform .submit:hover {
  box-shadow: 0 0 10px #FF6699;
}

.mailform .submit input[type="submit"] {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.mailform .submit::before {
  content: "無料";
  color: #FF6699;
  background: #FFF;
  display: inline-block;
  padding: 4px;
  border-radius: 4px;
  margin-right: 1em;
  font-size: 1.4rem;
  position: absolute;
  top: calc(50% - 11px);
  left: 35px;
}

.mailform .submit::after {
  content: "";
  content: "";
  background: url(../img/link-arrow.png) no-repeat center center;
  background-size: cover;
  width: 1.5em;
  height: 1.5em;
  display: block;
  position: absolute;
  right: 1em;
  top: calc(50% - 0.75em);
}

@media screen and (max-width:480px) {
  p {
    line-height: 1.5;
  }

  p.sub-copy {
    text-align: left;
    margin-bottom: 2em;
  }

  .scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }

  .scroll-wrap::after {
    animation: horizontal 1s ease-in-out infinite alternate;
    content: "";
    background: url(../img/scroll.png) no-repeat center;
    background-size: cover;
    display: block;
    height: 50px;
    aspect-ratio: 2 / 1;
    position: absolute;
    right: 0px;
    top: calc(50% - 25px);
    transition: opacity .25s;
  }

  @keyframes horizontal {
    0% {
      transform: translateX(-10px);
    }

    100% {
      transform: translateX(0px);
    }
  }

  .scroll-wrap.show::after {
    opacity: 1;
  }

  .scroll-wrap.del::after {
    opacity: 0;
  }

  .scroll-wrap img {
    max-width: 250vw;
    margin: 0 20px;
  }

  .mailform dl dt {
    font-size: 1.2rem;
    width: 8em;
  }

  .mailform dl dd {
    width: calc(100% - 5em);
  }

  .mailform .agree {
    margin: 1em 0;
  }

  .mailform .submit {
    width: 100%;
  }

  .mailform .submit::before {
    font-size: 1rem;
    top: calc(50% - 8px);
    left: 30px;
  }

  .mailform .submit::after {
    width: 1em;
    height: 1em;
    top: calc(50% - 0.5em);
  }

  .mailform .submit input[type="submit"] {
    font-size: 1.6rem;
  }
}

/*============================
#header
============================*/
#header {
  z-index: 100;
  width: 100%;
  display: block;
  box-shadow: 0px 4px 4px rgba(68, 154, 212, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  background: #FFF;
}

#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  max-width: 100%;
}

#header .logo {
  width: 170px;
}

#header .navi li {
  display: inline-block;
}

#header .navi li a {
  display: block;
  font-size: 1.4rem;
  padding: 0.5em;
  font-weight: bold;
  border-radius: 50px;
  color: #000;
}

#header .navi li a:hover {
  background: rgba(68, 154, 212, 0.2);
  opacity: 1;
}

#header .navi li a.button {
  color: #FFF;
  padding: 1em 3em 1em 2em;
  position: relative;
}

#header .navi li a.button::after {
  content: "";
  background: url(../img/link-arrow.png) no-repeat center center;
  background-size: cover;
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  right: 1em;
  top: calc(50% - 0.5em);
}

#header .navi li a.button.download {
  background: #FF6699;
}

#header .navi li a.button.introduction {
  background: #449AD4;
}

@media screen and (max-width:480px) {
  #header .logo {
    width: 25%;
  }

  #header .navi {
    display: none;
  }
}

/*============================
#main
============================*/
#main {
  padding-top: 82px;
  position: relative;
  width: 100%;
}

@media screen and (max-width:480px) {
  #main {
    padding-top: 50px;
  }
}

/*============================
#top
============================*/
#top {
  width: calc(100% - 350px);
}

@media screen and (max-width:1200px) {
  #top {
    width: 100%;
  }
}

/*============================
#mainvisual
============================*/
#mainvisual {}

@media screen and (max-width:480px) {
  #mainvisual {}
}

/*============================
#introduction
============================*/
#introduction .link-contact {
  display: none;
}

#introduction {
  padding-top: 30px;
}

#introduction h2 {
  color: #004672;
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.5;
}

#introduction h2 span {
  color: #FD569E;
  line-height: 1;
}

#introduction h2 span small {
  font-size: 3.2rem;
}

#introduction .client {
  overflow: hidden;
  position: relative;
  margin-bottom: 100px;
}

#introduction .client .slider {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

#introduction .client .slider1 {
  margin-bottom: 10px;
}

#introduction .client .slider2 {
  display: flex;
  justify-content: flex-end;
}

#introduction .client .slider .slides {
  display: flex;
  animation: scrollLeft 50s linear infinite;
}

#introduction .client .slider2 .slides {
  animation: scrollRight 50s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

#introduction .client .slider .slide {
  display: flex;
  align-items: center;
}

#introduction .client .slider .slide li {
  list-style: none;
  margin: 0 20px;
}

#introduction .client .slider .slide img {
  max-width: unset;
  display: block;
}

@media screen and (max-width:1200px) {
  #introduction .link-contact {
    display: block;
    padding-top: 0;
  }

  #introduction h2 {
    font-size: 2.4rem;
  }

  #introduction h2 span small {
    font-size: 2.4rem;
  }

  #introduction .client {
    margin-bottom: 50px;
  }

  #introduction .client .slider .slide li {
    margin: 0 10px;
  }
}

/*============================
#comparison
============================*/
#comparison {
  margin-bottom: 100px;
}

#comparison .inner {
  text-align: center;
}

#comparison p {
  margin-bottom: 2.5em;
  line-height: 1.5;
}
#comparison .comparison-table {
  width: 100%;
  overflow-x: auto;
}

#comparison .comparison-table table {
  table-layout: fixed;
  margin: auto;
  border-spacing: 0;
}

#comparison .comparison-table table tbody tr.pick {
  border: 6px solid #FF6696;
}

#comparison .comparison-table table tbody tr th {
  min-width: 11em;
  height: 4em;
  padding: 0 4px;
  border-right: 1px solid #004672;
}

#comparison .comparison-table table tbody tr th:last-child {
  border-right: none;
}

#comparison .comparison-table table tbody tr th.sticky {
  position: sticky;
  left: 3px;
}

#comparison .comparison-table table tbody tr th span {
  background: #EFFAFF;
  color: #004672;
  display: flex;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
}

#comparison .comparison-table table tbody tr td {
  line-height: 1.4;
  border-right: 1px solid #004672;
  border-top: 1px solid #004672;
  display: table-cell;
  text-align: center;
  vertical-align: top;
  padding: 1.5em 0 0.5em;
  background: #FFF;
}

#comparison .comparison-table table tbody tr td:last-child {
  border-right: none;
}

#comparison .comparison-table table tbody tr td.sticky {
  position: sticky;
  left: 3px;
  z-index: 1;
}

#comparison .comparison-table table tbody tr td.item {
  color: #004672;
  font-weight: bold;
  vertical-align: middle;
}

#comparison .comparison-table table tbody tr td i.symbol {
  display: block;
  margin-bottom: 0.5em;
  height: 1.5em;
}

#comparison .comparison-table table tbody tr td i.symbol img {
  width: 15%;
}

#comparison .comparison-table table tbody tr td small {
  display: block;
  color: #004672;
  font-size: 1.6rem;
}

@media screen and (max-width:480px) {
  #comparison {
    margin-bottom: 40px;
  }

  #comparison p {
    padding: 0 1em;
    margin-bottom: 2em;
  }

  #comparison .comparison-wrap {
    position: relative;
  }

  #comparison .comparison-wrap::before {
    content: "";
    height: 100%;
    width: calc(1em + 1px);
    display: block;
    background: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #comparison .comparison-table {
    padding-left: 10px;
  }

  #comparison .comparison-table table tbody tr th {
    font-size: 1.4rem;
    height: 3em;
  }

  #comparison .comparison-table table tbody tr td {
    font-size: 1.4rem;
    padding: 1em 0 0.5em;
  }

  #comparison .comparison-table table tbody tr td.pick::before {
    content: "";
    width: 6px;
    height: calc(100% + 12px);
    display: block;
    background: #FF6696;
    position: absolute;
    top: -6px;
    left: 0px;
    z-index: 1;
  }

  #comparison .comparison-table table tbody tr td small {
    font-size: 1.2rem;
  }
}

/*============================
#improvement
============================*/
#improvement {
  margin-bottom: 100px;
}

#improvement .improvement-wrap picture {
  margin-bottom: 10px;
  display: block;
}

#improvement .improvement-wrap p {
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width:480px) {
  #improvement {
    margin-bottom: 40px;
  }

  #improvement .inner {
    padding: 0 1em;
  }
}

/*============================
#reason
============================*/
#reason {
  background: url(../img/background-1.png) no-repeat center;
  background-size: cover;
  background-position-y: top;
}

#reason .reason-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 60px;
}

#reason .reason-wrap .reason {
  width: calc(100% / 3 - 20px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #FFF;
}

#reason .reason-wrap .reason figure {
  width: 60%;
  margin: 0 auto -20px;
  position: relative;
  top: -50px;
}

#reason .reason-wrap .reason figure figcaption {
  display: flex;
  width: 35%;
  aspect-ratio: 1/1;
  background: #449AD4;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  align-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -5%;
}

#reason .reason-wrap .reason figure figcaption i {
  display: block;
  font-size: 4rem;
  width: 100%;
  text-align: center;
  font-style: normal;
}

#reason .reason-wrap .reason h3 {
    color: #004672;
    text-align: center;
    padding: 0 1em .5em;
    font-size: 2.4rem;
    line-height: 1.5;
}

#reason .reason-wrap .reason p {
  padding: 0 1em 1em;
}

#reason .reason-wrap .reason p span {
  font-weight: bold;
}

#reason .reason-wrap .reason.reason-1 p span {
  font-weight: bold;
}

#reason .realization-wrap {
  margin-bottom: 80px;
}

@media screen and (max-width:480px) {
  #reason {
    background: url(../img/background-4.png) no-repeat center bottom;
    background-size: cover;
  }

  #reason .inner {
    padding: 0 0 50px;
  }

  #reason p {
    padding: 0 1em;
  }

  #reason .reason-wrap {
    display: block;
    padding: 50px 20px 0px;
  }

  #reason .reason-wrap .reason {
    width: 100%;
    margin-bottom: 80px;
    background: #FFF;
  }

  #reason .reason-wrap .reason figure figcaption {
    font-size: 1.5rem;
  }

  #reason .reason-wrap .reason figure figcaption i {
    font-size: 2.6rem;
  }

  #reason .reason-wrap .reason h3 {
    font-size: 1.8rem;
    padding: 0.5em;
    line-height: 1.5;
  }

  #reason .reason-wrap .reason.reason-3 {
    margin-bottom: 0;
  }

  #reason .realization-wrap {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
}

/*============================
#point
============================*/
#point {
  position: relative;
  padding-bottom: 100px;
}

#point::before,
#point::after {
  content: "";
  z-index: -1;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

#point::before {
  background-image: url(../img/background-2.png);
  background-position: top left;
  top: 20%;
  left: 0;
  width: 30%;
  height: 30%;
}

#point::after {
  background-image: url(../img/background-3.png);
  background-position: right bottom;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 30%;
}

#point .point-wrap .anchor-link {
  margin-bottom: 2em;
}

#point .point-wrap .anchor-link ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#point .point-wrap .anchor-link ul li {
  margin: 0 10px;
  position: relative;
}

#point .point-wrap .anchor-link ul li::after {
  content: "";
  background: url(../img/anchor-link.png) no-repeat center center;
  background-size: contain;
  width: 1.5em;
  height: 1.2em;
  display: block;
  position: absolute;
  right: 1em;
  top: calc(50% - 0.6em);
}

#point .point-wrap .anchor-link ul li a {
  width: 400px;
  display: block;
  background: #008CD6;
  color: #FFF;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 1em 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#point .point-wrap .anchor-link ul li:nth-child(2) a {
  background: #196AA1;
}

#point .point-wrap .anchor-link ul li a::after {
  content: "";
}

#point .point-wrap .point {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  padding-bottom: 2em;
  margin-bottom: 80px;
  background: #FFF;
}

#point .point-wrap .point h3 {
  text-align: center;
  font-size: 3.2rem;
  color: #FFF;
  background: #008CD6;
  padding: 1em 0;
 line-height: 1;
}

#point .point-wrap .point.employee .step-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
  margin-bottom: 60px;
  align-items: stretch;
}

#point .point-wrap .point.employee .step-wrap .step {
  width: calc(100% / 3 - 20px);
}

#point .point-wrap .point.employee .step-wrap .step figure {
  width: 60%;
  margin: 0 auto 20px;
  position: relative;
}

#point .point-wrap .point.employee .step-wrap .step figure figcaption {
  display: flex;
  width: 35%;
  aspect-ratio: 1 / 1;
  background: #449AD4;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  align-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -5%;
}

#point .point-wrap .point.employee .step-wrap .step figure figcaption i {
  display: block;
  font-size: 4rem;
  width: 100%;
  text-align: center;
  font-style: normal;
}

#point .point-wrap .point.employee .step-wrap .step h4 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #004672;
}

#point .point-wrap .point.employee p {
  font-size: 2rem;
  margin-bottom: 54px;
  padding: 0 1em;
}

#point .point-wrap .point.employee .useful-wrap {
  background: #EFFAFF;
  border-radius: 20px;
  margin: 0 2em 0;
  padding: 1em 1em 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#point .point-wrap .point.employee .useful-wrap h4 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  color: #004672;
  position: relative;
  top: -1.2em;
  line-height: 1;
  width: 100%;
  display: block;
}

#point .point-wrap .point.employee .useful-wrap .useful {
  width: calc(100% / 3 - 20px);
  /* margin: 0 auto; */
}

#point .point-wrap .point.employee .useful-wrap .useful figure {
  width: 80%;
  margin: 0 auto 40px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

#point .point-wrap .point.employee .useful-wrap .useful h5 {
  color: #004672;
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

#point .point-wrap .point.employee .useful-wrap .useful h5 small {
  font-size: 2rem;
}

#point .point-wrap .point.employee .useful-wrap .useful h5 span.marker {
  background: linear-gradient(transparent 90%, #FF6699 90%);
}

#point .point-wrap .point.employee .useful-wrap .useful p {
  font-size: 1.8rem;
  padding: 0;
  margin-bottom: 0;
}

#point .point-wrap .point.charge h3 {
  background: #196AA1;
}

#point .point-wrap .point.charge .control-wrap {
  padding: 1em;
}

#point .point-wrap .point.charge .control-wrap .control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#point .point-wrap .point.charge .control-wrap .control figure {
  width: 50%;
  padding: 0 1em;
}

#point .point-wrap .point.charge .control-wrap .control .detail {
  width: 50%;
  padding: 0 1em;
}

#point .point-wrap .point.charge .control-wrap .control .detail h4 {
  color: #004672;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}

/* #point .point-wrap .point.charge .control-wrap .control:nth-child(2) .detail {
  order: 1;
} */

#point .point-wrap .point.charge .control-wrap .control:nth-child(2) figure {
  order: 1;
}

#point .point-wrap .point.charge .other-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 2em;
}

#point .point-wrap .point.charge .other-wrap .other {
  background: #EFFAFF;
  border-radius: 10px;
  width: calc(50% - 1em);
  padding: 1em 2em 2em;
}

#point .point-wrap .point.charge .other-wrap .other h4 {
  text-align: center;
  color: #004672;
  font-size: 2.4rem;
  margin-bottom: 1em;
}

#point .point-wrap .point.charge .other-wrap .other h4::before {
  content: "";
  display: inline-block;
  background: url(../img/other.png) no-repeat center;
  width: 1.2em;
  height: 1em;
  background-size: cover;
  margin-right: 0.25em;
}

#point .point-wrap .point.charge .other-wrap .other ul li {
  color: #004672;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.4;
}

#point .point-wrap .point.charge .other-wrap .other ul li::before {
  content: "・";
}

#point .point-wrap .point.charge .control-wrap .control {
  margin-bottom: 2em;/*画像差し替えたので、余白調整*/
}

@media screen and (max-width:480px) {
  #point {
    padding: 0;
  }

  #point::before,
  #point::after {
    content: none;
  }

  #point .point-wrap {
    padding: 0 1em;
  }

  #point .point-wrap .anchor-link {
    margin-bottom: 1em;
  }

  #point .point-wrap .anchor-link ul {
    display: block;
  }

  #point .point-wrap .anchor-link ul li {
    width: 100%;
    margin: 0 0 10px;
  }

  #point .point-wrap .anchor-link ul li a {
    width: 100%;
    font-size: 1.6rem;
  }

  #point .point-wrap .point {
    padding-bottom: 1em;
    margin-bottom: 60px;
  }

  #point .point-wrap .point h3 {
    font-size: 2.4rem;
  }

  #point .point-wrap .point.employee .step-wrap {
    padding: 0;
    display: block;
    padding: 30px 30px 0;
    margin-bottom: 0;
  }

  #point .point-wrap .point.employee .step-wrap .step {
    width: 100%;
    margin-bottom: 30px;
  }

  #point .point-wrap .point.employee .step-wrap .step figure {
    margin-bottom: 10px;
  }

  #point .point-wrap .point.employee .step-wrap .step figure figcaption {
    font-size: 1.5rem;
  }

  #point .point-wrap .point.employee .step-wrap .step figure figcaption i {
    font-size: 2.6rem;
  }

  #point .point-wrap .point.employee .step-wrap .step h4 {
    font-size: 1.8rem;
  }

  #point .point-wrap .point.employee p {
    font-size: 1.4rem;
  }

  #point .point-wrap .point.employee .useful-wrap {
    margin: 0 10px;
    display: block;
    padding-bottom: 10px;
  }

  #point .point-wrap .point.employee .useful-wrap h4 {
    font-size: 2rem;
    line-height: 1.5;
  }

  #point .point-wrap .point.employee .useful-wrap .useful {
    width: 100%;
    margin-bottom: 30px;
  }

  #point .point-wrap .point.employee .useful-wrap .useful figure {
    width: 60%;
  }

  #point .point-wrap .point.employee .useful-wrap .useful h5 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
  }

  #point .point-wrap .point.employee .useful-wrap .useful h5 small {
    font-size: 1.8rem;
  }

  #point .point-wrap .point.employee .useful-wrap .useful p {
    font-size: 1.4rem;
  }

  #point .point-wrap .point.charge {
    padding-bottom: 0;
  }

  #point .point-wrap .point.charge h3 {
    font-size: 1.8rem;
  }

  #point .point-wrap .point.charge .control-wrap .control {
    display: block;
    
  }

  #point .point-wrap .point.charge .control-wrap .control figure {
    width: 100%;
    padding: 0;
  }

  #point .point-wrap .point.charge .control-wrap .control .detail {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }

  #point .point-wrap .point.charge .control-wrap .control .detail h4 {
    font-size: 2rem;
  }

  #point .point-wrap .point.charge .other-wrap {
    display: block;
    padding: 0 1em;
  }

  #point .point-wrap .point.charge .other-wrap .other {
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
  }

  #point .point-wrap .point.charge .other-wrap .other h4 {
    font-size: 1.8rem;
  }

  #point .point-wrap .point.charge .other-wrap .other ul li {
    font-size: 1.4rem;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.4;
    margin-bottom: 0.5em;
  }

  #point .point-wrap .point.charge .other-wrap .other ul li::before {
    position: absolute;
    left: 0;
  }
}

/*============================
#function
============================*/
#function {
  margin-bottom: 80px;
}

#function .function-wrap .enrichment {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#function .function-wrap .enrichment figure {
  width: 45%;
}

#function .function-wrap .enrichment .detail {
  width: 55%;
  position: relative;
  p@osi: ;
  padding: 2em;
  text-align: center;
}

#function .function-wrap .enrichment .detail::after {
  content: "";
  background: #EFFAFF;
  width: 150%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 5px;
  z-index: -1;
}

#function .function-wrap .enrichment .detail h3 {
  color: #004672;
  text-align: center;
  display: inline-block;
  font-size: 2.4rem;
  margin-bottom: 1em;
  position: relative;
  padding: 0.5em 0;
}

#function .function-wrap .enrichment .detail h3 span {
  position: relative;
}

#function .function-wrap .enrichment .detail h3 span::after {
  content: "";
  background: #FF6699;
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  bottom: -4px;
}

#function .function-wrap .enrichment .detail h3::before,
#function .function-wrap .enrichment .detail h3::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.4em;
  position: absolute;
  background-size: contain;
  top: calc(50% - 0.7em);
}

#function .function-wrap .enrichment .detail h3::before {
  background-image: url(../img/function-before.png);
  left: -2em;
}

#function .function-wrap .enrichment .detail h3::after {
  background-image: url(../img/function-after.png);
  right: -2em;
}

#function .function-wrap .enrichment .detail p {
  color: #004672;
  text-align: left;
  font-size: 1.8rem;
}

#function .function-wrap .enrichment.second ul {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

#function .function-wrap .enrichment.second ul li {
  background: #449AD4;
  color: #FFF;
  width: calc(50% - 5px);
  border-radius: 5px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 1.5em 0;
  margin-bottom: 10px;
}

#function .function-wrap .enrichment.second figure {
  width: 50%;
  padding-left: 2em;
}

@media screen and (max-width:480px) {
  #function .inner {
    padding: 0 1em;
  }

  #function p {
    text-align: center;
  }

  #function .function-wrap .enrichment {
    display: block;
    margin-bottom: 2em;
  }

  #function .function-wrap .enrichment figure {
    width: 100%;
  }

  #function .function-wrap .enrichment .detail {
    width: 100%;
    padding: 1em;
  }

  #function .function-wrap .enrichment .detail h3 {
    font-size: 1.8rem;
  }

  #function .function-wrap .enrichment .detail p {
    font-size: 1.4rem;
  }

  #function .function-wrap .enrichment.second ul {
    width: 100%;
  }

  #function .function-wrap .enrichment.second ul li {
    font-size: 1.4rem;
  }

  #function .function-wrap .enrichment.second figure {
    width: 100%;
    padding: 0;
  }
}

/*============================
#case
============================*/
#case {
  margin-bottom: 60px;
  background: #EFFAFF;
  padding-top: 40px;
}

#case .case-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#case .case-wrap .case {
  width: calc(50% - 20px);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  background: #FFF;
}

#case .case-wrap .case figure {
  margin-bottom: 10px;
}

#case .case-wrap .case h3 {
  color: #004672;
  font-size: 1.8rem;
  margin: 0 1em 1em;
  line-height: 1.4;
}

#case .case-wrap .case p {
  margin: 0 1em 1em;
  font-size: 1.6rem;
}

#case .case-wrap .case dl {
  margin: 0 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#case .case-wrap .case dl dt,
#case .case-wrap .case dl dd {
  margin-bottom: 1.3em;
}

#case .case-wrap .case dl dt {
  background: #449AD4;
  color: #FFF;
  width: 6em;
  font-size: 1.6rem;
  text-align: center;
  padding: 1em 0;
  border-radius: 10px;
  font-weight: bold;
}

#case .case-wrap .case dl dd {
  width: calc(100% - 6em);
  padding-left: 1em;
  line-height: 1.6;
}

@media screen and (max-width:480px) {
  #case .case-wrap {
    display: block;
    padding: 0 1em 1em;
  }

  #case .case-wrap .case {
    width: 100%;
  }

  #case .case-wrap .case h3 {
    font-size: 1.6rem;
  }

  #case .case-wrap .case p {
    font-size: 1.4rem;
  }

  #case .case-wrap .case dl dt {
    font-size: 1.4rem;
  }

  #case .case-wrap .case dl dd {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

/*============================
#flow
============================*/
#flow {
  margin-bottom: 50px;
}

#flow .flow-wrap {
  margin-bottom: 100px;
}

#flow .flow-wrap .scroll-wrap {
  margin-bottom: 50px;
}

#flow .flow-wrap p {
  margin-bottom: 1em;
}

#flow .price-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#flow .price-wrap .price {
  /* width: 28%; */
  width: calc((100% - (95px + 40px)) / 5);
}

#flow .price-wrap .price dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}

#flow .price-wrap .price dl::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 20px 20px 0 0;
}

#flow .price-wrap .price.first dl::after {
  /* width: calc(100% - 132px); */
  width: calc(100% - 95px);
}

#flow .price-wrap .price dl dt {
  /* width: 132px; */
  width: 95px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flow .price-wrap .price dl dt.sp {
  display: none;
}

#flow .price-wrap .price dl dd.title {
  background: #CCC;
  color: #FFF;
  border-radius: 20px 20px 0 0;
}

#flow .price-wrap .price dl dd {
  width: 100%;
  font-size: 2.8rem;
  font-size: clamp(2.1rem, 1.25rem + 1.1vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  padding: 1em 0;
  position: relative;
}

#flow .price-wrap .price dl dd::after {
  content: "";
  width: calc(100% - 20px);
  height: 2px;
  background: #BEBEBE;
  display: block;
  position: absolute;
  left: 10px;
  bottom: 0;
}

#flow .price-wrap .price dl dd.title::after {
  content: none;
}

#flow .price-wrap .price dl dd:last-child::after {
  content: none;
}

#flow .price-wrap .price dl dd small {
  font-size: 1.8rem;
}

#flow .price-wrap .price.first {
  /* width: calc(28% + 132px); */
  width: calc(((100% - (95px + 40px)) / 5) + 95px);
}

#flow .price-wrap .price.first dl {
  position: relative;
}

#flow .price-wrap .price.first dl dd.title {
  background: #FF6699;
}

#flow .price-wrap .price.first dl dd {
  /* width: calc(100% - 132px); */
  width: calc(100% - 95px);
}

#flow .price-wrap .price.second dl dd.title {
  background: #008CD6;
}

#flow .price-wrap .price.third dl dd.title {
  background: #196AA1;
}

#flow .price-wrap ~ .chu {
  width: fit-content;
  margin: 30px auto;
  text-align: center;
  background: #effaff;
  padding: 20px;
  border-radius: 20px;
}
#flow .price-wrap + .att {margin-top: 10px;}
#flow .price-wrap ~ .att {
  text-align: left;
  font-size: 1.4rem;
}

#flow .price-wrap ~ .lead {
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

#flow .price-wrap .link-contact {
  width: 100%;
}

/*表を5分割に調整*/
#flow .price-wrap .price dl sup {
  font-size: 75%;
  vertical-align: top;
}
#flow .price-wrap .price.third dl dd:last-of-type {
  /* display: none; */
}
#flow .price-wrap .price.third dl dd .price-sp-third {
  font-feature-settings: 'palt';
}
@media screen and (min-width:481px) {
  #flow .price-wrap .price.third dl {
    flex-direction: column;
    height: 100%;
    }
  #flow .price-wrap .price.third dd.title {
    flex-grow: 0;
  }
  #flow .price-wrap .price.third dd {
    /* flex-grow: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width:480px) {
  #flow .price-wrap .price.third dd:nth-of-type(2) {
    position: relative;
    top: 0.5em;
  }
}
/**/

/*XML申告処理料品セルを最後に追加*/
#flow .price-wrap .price dl dd:nth-last-of-type(2)::after {
  content: none;
}
#flow .price-wrap .price dl dd:last-of-type {
  color: #ff6699;
}
#flow .price-wrap .price dl dd:last-of-type::after,
#flow .price-wrap .price.third dl dd:last-of-type::after {
  content: '';
  display: block;
  width: 3em;
  height: 1em;
  background: #ff6699;
  left: 50%;
  top: -0.35em;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#flow .price-wrap .price.third dl dd small {
  align-self: flex-end;
}
@media screen and (min-width:481px) {
  #flow .price-wrap .price.third dl dd:nth-last-of-type(2) {
    display: none;
  }
  #flow .price-wrap {position: relative}
  #flow .price-wrap::after {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 95px);
    height: 4.5em;
    border: 4px solid rgba(255, 102, 153, 0.5);
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width:480px) {
  #flow .price-wrap .price dl dd:last-child::before {
    content: '';
    height: 100%;
    background: none;
    border: 4px solid rgba(255, 102, 153,0.5);
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
  }
}
/**/

@media screen and (max-width:480px) {
  #flow .flow-wrap .scroll-wrap {
    position: relative;
  }

  #flow .flow-wrap .scroll-wrap img {
    margin-right: 20px;
  }

  #flow .flow-wrap p {
    padding: 0 1em;
  }

  #flow .price-wrap {
    padding: 0 1em;
  }

  #flow .price-wrap .price {
    width: 100%;
    margin-bottom: 2em;
  }

  #flow .price-wrap .price dl dt {
    font-size: 1.4rem;
    width: 120px;
  }

  #flow .price-wrap .price dl dt.sp {
    display: flex;
  }

  #flow .price-wrap .price dl dd.title {
    font-size: 2.1rem;
  }

  #flow .price-wrap .price dl dd {
    font-size: 1.8rem;
    width: calc(100% - 120px);
  }

  #flow .price-wrap .price dl dd small {
    font-size: 1.4rem;
  }

  #flow .price-wrap .price.first {
    width: 100%;
  }

  #flow .price-wrap .price.first dl::after {
    width: calc(100% - 120px);
  }

  #flow .price-wrap .price.first dl dd {
    width: calc(100% - 120px);
  }

  #flow .price-wrap .price dl::after {
    width: calc(100% - 120px);
  }

  #flow .price-wrap p,#flow .price-wrap + .chu p {
    text-align: left;
    line-height: 2;
  }

  #flow .price-wrap .link-contact {
    padding: 1em 0;
  }
}

/*============================
#faq
============================*/
#faq h2 {
  position: relative;
  top: 80px;
}

#faq h2 span {
  padding: 0 1em;
  background: #FFF;
}

#faq .faq-wrap {
  max-width: 800px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 2em 1em 1em;
  border-radius: 20px;
}

#faq .faq-wrap dl {
  color: #004672;
  padding: 1em 0;
  position: relative;
}

#faq .faq-wrap dl::after {
  content: "";
  width: 75%;
  height: 1px;
  background: #C3C3C3;
  display: block;
  position: absolute;
  left: 12.5%;
  bottom: 0;
}

#faq .faq-wrap dl:last-child::after {
  content: none;
}

#faq .faq-wrap dl dt,
#faq .faq-wrap dl dd {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5em 0 0.5em 3em;
  line-height: 1.4;
}

#faq .faq-wrap dl dt {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1em;
  padding-top: 1em;
}

#faq .faq-wrap dl dt i,
#faq .faq-wrap dl dd i {
  display: flex;
  font-style: normal;
  font-weight: 900;
  position: relative;
  margin-right: 1em;
  width: 2.2em;
  aspect-ratio: 1/1;
  text-align: center;
  color: #FFF;
  padding: 0.5em;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  line-height: 1;
}

#faq .faq-wrap dl dt i::after,
#faq .faq-wrap dl dd i::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #CCC;
  display: block;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

#faq .faq-wrap dl dt i::after {
  background: #449AD4;
}

#faq .faq-wrap dl dd i::after {
  background: #FF6699;
}

#faq .faq-wrap dl dd {
  font-size: 1.6rem;
  padding-bottom: 1em;
}

@media screen and (max-width:480px) {
  #faq .inner {
    padding: 0 1em;
  }

  #faq h2 {
    top: 45px;
  }

  #faq .faq-wrap {
    padding-bottom: 0;
  }

  #faq .faq-wrap dl::after {
    width: 80%;
    left: 10%;
  }

  #faq .faq-wrap dl dt {
    font-size: 1.4rem;
  }

  #faq .faq-wrap dl dt i,
  #faq .faq-wrap dl dd i {
    font-size: 1.4rem;
  }

  #faq .faq-wrap dl dd {
    font-size: 1.3rem;
  }
}

/*============================
#contact
============================*/
#contact .inner {
  max-width: unset;
}

#contact h2 {
  position: relative;
  top: 130px;
  z-index: 1;
}

#contact .contact-wrap {
  position: relative;
  background: #EFFAFF;
  padding: 130px 0 80px;
  margin: 0;
}

#contact .contact-wrap .tab {
  max-width: 800px;
  margin: 0 auto;
}

#contact .contact-wrap .tab ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact .contact-wrap .tab ul li.active {
  background: #004672;
}

#contact .contact-wrap .tab ul li {
  background: #67AAD7;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  border-radius: 10px 10px 0 0;
  width: calc(100% / 3 - 8px);
  height: 60px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35S;
}

#contact .contact-wrap .content-wrap {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background: #FFF;
  border-radius: 0 0 10px 10px;
  padding: 30px 40px;
}

#contact .contact-wrap .content-wrap .content {
  height: 0;
  visibility: hidden;
  display: none;
}

#contact .contact-wrap .content-wrap .content.active {
  height: auto;
  visibility: visible;
  transition: all .35S;
  text-align: center;
  display: block;
}

#contact .contact-wrap .content-wrap .content .mailform dl dd {
  text-align: left;
}

@media screen and (max-width:480px) {
  #contact h2 {
    top: 80px;
  }

  #contact .contact-wrap {
    padding: 100px 1em 40px;
  }

  #contact .contact-wrap .tab ul li {
    font-size: 1.2rem;
    height: 50px;
    line-height: 1.5;
  }

  #contact .contact-wrap .content-wrap {
    padding: 1em;
  }
}

/*============================
#call
============================*/
#call .inner {
  padding: 50px 0;
}

#call h2 {
  margin-bottom: 20px;
}

#call p.number {
  display: flex;
  align-items: center;
  justify-content: center;
}

#call p.number a {
  font-size: 4rem;
  font-weight: bold;
  color: #449AD4;
}

#call p.number a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.8em;
  background: url(../img/phone.png) no-repeat center;
  background-size: contain;
}

#call p.number span {
  background: #449AD4;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 50px;
  margin-left: 20px;
}

@media screen and (max-width:480px) {
  #call .inner {
    padding: 20px 40px 60px;
  }

  #call h2 {
    margin-bottom: 10px;
  }

  #call p.number {
    display: block;
  }

  #call p.number a {
    display: block;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
  }

  #call p.number span {
    font-size: 1.5rem;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

/*============================
#fixed
============================*/
#fixed {
  width: 350px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background: #449AD4;
  padding: 160px 10px 0;
}

#fixed .aside-title {
  position: relative;
}

#fixed .aside-title .title {
    position: relative;
    border-radius: 12px;
    padding: 0.5em;
    width: 100%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    background: #dc3232;
}
#fixed .aside-title .title h2 {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
  letter-spacing: 0.025em;
  padding-left: 0;
  color: #fff;
}
#fixed .aside-title .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #dc3232 transparent transparent;
  translate: -50% 100%;
}

#fixed .aside-title .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #dc3232 transparent transparent;
  translate: -50% 100%;
}
#fixed .aside-title .title h2 small {
  font-size: 2.2rem;
}

#fixed .aside-title .speech {
  position: absolute;
  right: 0;
  top: -20px;
  background: #C20000;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 90px;
  z-index: 1;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#fixed .aside-title .speech::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #C20000 transparent transparent transparent;
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform: rotate(45deg);
  z-index: -1;
}

#fixed .aside-title .speech span {
  font-size: 1.8rem;
  color: #FFF;
  text-align: center;
}

#fixed .aside-wrap h3 {
  font-size: 3.2rem;
  text-align: center;
  color: #FFF;
  margin-bottom: 1em;
  line-height: 1.6;
}

#fixed .aside-wrap h3 span {
  font-size: 1.8rem;
 display: inline;
 font-weight: 700;
  color: #fff;
  font-family: inherit;
  line-height: inherit;
}

#fixed .aside-wrap .mailform dl dt {
  width: 6em;
  padding: 0.5em;
}

#fixed .aside-wrap .mailform dl dd {
  padding: 0;
  width: calc(100% - 5em);
}

.mailform dl dd a {
  color: #000;
  text-decoration: underline;
}

#fixed .aside-wrap .mailform dl dd.required label {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

#fixed .aside-wrap .mailform dl dd label input {
  margin-right: 4px;
}

#fixed .aside-wrap .mailform .submit {
  width: 100%;
}

@media screen and (max-width:1200px) {
  #fixed {
    display: none;
  }
}

/*============================
#footer
============================*/
#footer {
  background: #133D65;
}

#footer .footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 50px 0;
  justify-content: flex-start;
}

#footer .footer .logo {
  width: 160px;
  margin-right: 20px;
}

#footer .footer .location p {
  font-size: 1.3rem;
  color: #FFF;
}

#footer .footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#footer .footer ul li {
  display: inline-block;
  margin-left: 50px;
}

#footer .footer ul li a {
  position: relative;
  padding-left: 36px;
  color: #FFF;
  font-size: 1.3rem;
}

#footer .footer ul li a::after {
  content: "";
  display: block;
  width: 26px;
  height: 4px;
  background: #FF6699;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}

#footer .copyright {
  background: #12283A;
  text-align: center;
  color: #FFF;
  font-size: 1.6rem;
  padding: 20px 0;
}

@media screen and (max-width:480px) {
  #footer .footer {
    display: block;
    text-align: center;
    padding: 30px 0;
  }

  #footer .footer .logo {
    margin: 0 auto 20px;
    width: 120px;
  }

  #footer .footer .location {
    padding: 0 1em;
  }

  #footer .footer .location p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  #footer .footer ul {
    display: flex;
    justify-content: space-evenly;
  }

  #footer .footer ul li {
    margin: 0;
  }

  #footer .footer ul li a {
    font-size: 1.2rem;
  }
}

/*============================
#toggle
============================*/
#toggle {
  display: none;
}

@media screen and (max-width:480px) {
  #toggle {
    position: fixed;
    display: block;
    top: 10px;
    right: 5px;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    z-index: 100;
  }

  #toggle .button {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
  }

  #toggle .button span {
    width: 100%;
    height: 3px;
    display: block;
    background: #000;
    position: absolute;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
  }

  #toggle .button span:nth-child(1) {
    top: 0;
  }

  #toggle .button span:nth-child(2) {
    top: calc(50% - 1.5px);
  }

  #toggle .button span:nth-child(3) {
    bottom: 0;
  }

  #toggle.on .button span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #toggle.on .button span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }

  #toggle.on .button span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/*============================
#menu
============================*/
#menu {
  display: none;
}

@media screen and (max-width:480px) {
  #menu {
    position: fixed;
    top: 0;
    left: 0;
    background: #449AD4;
    padding: 0 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* visibility: hidden; */
    /* opacity: 0; */
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transform: translateY(-100%);
    transition: all .3s ease;
    height: 100%;
    z-index: 99;
  }

  #menu.on {
    transform: translateY(-0%);
  }

  #menu ul {
    text-align: center;
    width: 100%;
    padding-top: 50px;
  }

  #menu ul li {
    margin-bottom: 1.5em;
  }

  #menu ul li a {
    color: #FFF;
    font-weight: bold;
  }

  #menu ul li a.button {
    display: block;
    width: 100%;
    background: #FF6699;
    padding: 1em 0;
    border-radius: 100px;
    position: relative;
  }

  #menu ul li a.button::after {
    content: "";
    background: url(../img/link-arrow.png) no-repeat center center;
    background-size: cover;
    width: 1em;
    height: 1em;
    display: block;
    position: absolute;
    right: 1em;
    top: calc(50% - 0.5em);
  }

  #menu ul li a.button.introduction {
    color: #449AD4;
    background: #FFF;
  }

  #menu ul li a.button.introduction::after {
    background-image: url(../img/link-arrow2.png);
  }
}

/*============================
etc
============================*/
.marker {
  background: linear-gradient(transparent 50%, rgba(255, 102, 153, 0.2) 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s
}

.marker.on {
  background-size: 100% 100%
}


.wpcf7 p {
  display: inline;
  position: initial;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  margin-top: -3px;
  margin-right: 16px;
  z-index: 2;
  background-color: #ffffff;
  opacity: 1;
  width: 26px;
  height: 26px;
}

.wpcf7-spinner::before {
  background-color: #ff6699;
}

.mailform dl dd input[type="text"],
.mailform dl dd input[type="email"],
.mailform dl dd input[type="tel"],
.mailform dl dd textarea,
.mailform dl dd select,
.mailform dl dd input[type="checkbox"] {
  outline: none;
  font-size: 16px;
}

.wpcf7-list-item {
  display: block;
}

.sp_header-cta.sp {}

.sp_header-cta.sp .link-contact {
  padding: 0;
}

.sp_header-cta.sp .link-contact a {
  background: #FF6699;
  color: #FFF;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 50px;
  position: relative;
  margin-right: 3em;
}

.sp_header-cta.sp .link-contact a::after {
  display: none;
}
