@charset "UTF-8";
/* 
1.デバイス共通css
2.767px以下のみ (スマホのみ)
3.768px以上のみ (タブレット含むスマホサイズ以上)
4.980px以上のみ (PC)
5.320px以下のみ (幅狭スマホ)
6.slick
*/
html {
  font-family: "Meiryo", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
a {
  text-decoration: none;
  color: inherit;
}
a.link-cont {
  color: #0f91ff;
}
a.link-cont::after {
  content: " ＞";
}

a:hover {
  opacity: 0.7;
}

a:hover img {
  opacity: 0.7;
}

body {
  color: #333333;
  line-height: 1.5;
}

.u-lH-15 {
  line-height: 1.5;
}

.u-lH-13 {
  line-height: 1.3;
}

header {
  padding: 3.3vw 5.3%;
}
header img {
  display: inline;
  max-width: 31%;
  vertical-align: middle;
  margin-right: 10px;
}

header .code {
  font-size: 2vw;
}

.tCenter {
  text-align: center;
}

.tCenter_pc {
  text-align: left !important;
}

.tLeft {
  text-align: left !important;
}

.tRight {
  text-align: right;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 10px;
}
.mt5 {
  margin-top: 5px;
}
.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.dInline {
  display: inline !important;
}

.dInlineB {
  display: inline-block !important;
}
.marker {
  background: -o-linear-gradient(
    transparent 65%,
    #ffde00 65%,
    #ffde00 85%,
    transparent 85%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(65%, transparent),
    color-stop(65%, #ffde00),
    color-stop(85%, #ffde00),
    color-stop(85%, transparent)
  );
  background: linear-gradient(
    transparent 65%,
    #ffde00 65%,
    #ffde00 85%,
    transparent 85%
  );
}

.link_window {
  display: inline-block;
  width: 1rem;
  margin: 0 0.3rem;
  vertical-align: middle;
}

.link-cont .link_window {
  width: 0.8rem;
  vertical-align: baseline;
}

.openModal .link_window {
  margin: 0;
}

.pcOnly-tab {
  display: none !important;
}

.pcOnly-tab-flex {
  display: none !important;
}

[class^="pcOnly"] {
  display: none !important;
}

.spOnly-mini {
  display: none;
}

.bold {
  font-weight: bold;
}

.strong01 {
  color: #c31920;
  font-weight: bold;
  font-size: 1.142rem;
  line-height: 1.3;
}

.strong02 {
  font-size: 1.142rem;
}

.strong03 {
  font-size: 1rem;
  font-weight: bold;
  color: #c31920;
}

.strong04 {
  font-size: 1.571rem;
}
.strong05 {
  color: #c31920;
}
.list_circle02 > li {
  font-weight: bold;
}
.list_circle02 > li li {
  font-weight: normal;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: inherit;
  image-rendering: -webkit-optimize-contrast;
}

.kvArea {
  width: 100%;
  display: block;
}

.kvArea img {
  width: 100%;
}

.contentsWrap {
  width: 100%;
  padding: 5vw 5vw;
  background-color: #ffed90;
}

.contentsWrap section:not(:first-child) {
  margin-top: 5vw;
}

h2,
h3,
h4,
h5 {
  font-weight: bold;
}

.f-small {
  font-size: 0.857rem !important;
  font-weight: normal !important;
}

/* [class*="sec0"] p,
[class*="sec0"] ul,
[class*="sec0"] ol {
  margin-bottom: 2vw;
} */

/* [class*="sec0"] li ul {
  margin-top: 2vw;
} */

[class*="flex"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

h2 {
  font-size: 1.142rem;
}

[class^="list_"] {
  padding-left: 1rem;
}
[class^="list_"] > * {
  display: block;
  text-indent: -1rem;
}
/* [class^="list_"] > *:before {
  margin-right: 0.3rem;
} */
[class^="list_note"] > *:before {
  content: "※";
}
.list_note {
  font-size: 0.857rem;
}
[class^="list_circle"] > *:before {
  content: "・";
}
[class^="list_circle02"] > *:before {
  content: "●";
}
.list_square > *:before {
  content: "■";
}
.list_star > *:before {
  content: "★";
}

#accordion .accordion-content {
  border: solid 2px #009949;
  border-top: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4vw;
  margin-top: 0;
  line-height: 2;
}
.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  cursor: pointer;
  padding: 15px 0;
  text-align: center;
  background: #009949;
  border: solid 4px #009949;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.accordion-container .accordion-title:hover {
  opacity: 0.8;
}
.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 48%;
  right: 4vw;
  width: 15px;
  height: 2.5px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 4vw;
  /*横線*/
  width: 15px;
  height: 2.5px;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion-container .accordion-title.open::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion-container .accordion-title.open::after {
  opacity: 0;
}

footer {
  padding: 6.6vw 5vw 20vw;
}

.footerContents {
  width: 100%;
  max-width: 980px;
  margin: auto;
  text-align: right;
}
.footerContents p {
  font-size: 1rem;
}
.footerContents div p:first-of-type {
  margin-bottom: 0.625rem;
}
.footerContents small {
  margin-top: 15px;
  display: block;
  font-size: 0.857rem;
}
footer .logoArea {
  text-align: center;
  margin-top: 13vw;
}

.footerContents a {
  text-decoration: underline;
  font-weight: normal;
  font-size: 1rem;
  background-size: 0.8rem;
}

.sec01 li p {
  width: 76vw;
  margin-left: 2.6vw;
}

.sec01 .openModal {
  margin-top: 0;
}
section {
  background: #fff;
}

[class^="sec0"]:not(.sec01) {
  border: solid 2px #009949;
}

[class^="sec0"]:not(.sec01) h2,
.sec02 h3,
.sec04 h3 {
  text-align: center;
  background: #009949;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.3;
}

section:not(.sec01) h2 {
  padding: 2vw 0;
  line-height: 1.3;
}
.sec02 h3,
.sec04 h3 {
  width: 60vw;
  height: 6.5vw;
  margin: auto;
  margin-bottom: 3.2vw;
}

.sec02 h3:not(:first-child),
.sec04 h3:not(:first-child) {
  margin-top: 5vw;
}

.flex-3col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-3col li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  font-weight: bold;
  font-size: 0.857rem;
  width: calc((100% - 10.4vw) / 3);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-3col li span {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.flex-3col li span img {
  height: 14.2vw;
  width: auto;
}

.flex-3col li:not(:last-child) span::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(60%);
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  right: -4.2vw;
  width: 3.9vw;
  height: 3.6vw;
  background-image: url(/oos/adv/image/tmp_246/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.secInner {
  padding: 4vw 3.3vw;
}

.sec02 li:last-child p {
  margin-bottom: 0;
}

.btn_cv,
.openModal {
  background: #ea5800;
  -webkit-box-shadow: 0 0.3rem 0 0 #a8470d;
  box-shadow: 0 0.3rem 0 0 #a8470d;
  color: #fff;
  width: 80vw;
  height: 11vw;
  margin: auto;
  margin-top: 5vw;
  margin-bottom: 0.3rem !important;
  border-radius: 1.3vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.btn_cv span:last-child,
.openModal span:last-child {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 2vw;
}

table,
tbody {
  width: 100%;
}

table,
td,
th {
  border: 1px solid #a3a3a3;
  border-collapse: collapse;
}
td,
th {
  padding: 2px;
  width: calc(100% / 3);
  font-size: 0.857rem;
  vertical-align: middle;
  text-align: center;
  color: #000;
}
th {
  background: #eaffdf;
  font-weight: bold;
}

.secInner > * {
  margin-bottom: 3vw;
}

.sec02 .huyo {
  margin-bottom: 4vw;
}

.secInner > .list_square {
  margin-bottom: 1.5vw;
}
.secInner > *:last-child {
  margin-bottom: 0;
}
.sec01 > p {
  margin-bottom: 5.5vw;
}

.fixed_banner {
  position: fixed;
  display: none;
  z-index: 100;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 10px;
  width: 100%;
  padding: 0 2.5vw;
}

.fixed_banner a {
  background-color: #007236;
  -webkit-box-shadow: 0 0.3rem 0 0 #005a2b;
  box-shadow: 0 0.3rem 0 0 #005a2b;
  font-weight: bold;
  margin: 0;
  margin: auto;
}

.fixed_banner a:hover {
  background-color: #00b353;
  box-shadow: 0 0.3rem 0 0 #009947;
  opacity: 10;
}

.fixed_banner p {
  position: relative;
}
.fixed_banner .smartBannerClose {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 1.285rem;
  cursor: pointer;
  z-index: 110;
}
.sec01 h2 {
  font-size: 1rem;
  position: relative;
  display: block;
}
.sec01 .read::before,
.sec01 .read::after {
  content: "";
  width: 4.4vw;
  height: 7.3vw;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 60%;
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
}
.sec01 .read::before {
  background-image: url(/oos/adv/image/tmp_246/img_bar_left.png);
  left: 4vw;
}
.sec01 .read::after {
  background-image: url(/oos/adv/image/tmp_246/img_bar_right.png);
  right: 4.5vw;
}

.sec01 h2 span {
  font-size: 1.142rem;
  color: #009949;
  line-height: 1.34;
}

.sec03 h3 {
  color: #2e6b8e;
}

.sec03 .btn_cv {
  background-color: #e19400;
  -webkit-box-shadow: 0 0.3rem 0 0 #9f6900;
  box-shadow: 0 0.3rem 0 0 #9f6900;
}

.dlArea {
  background: #009949;
  color: #fff;
  text-align: center;
}

.dlArea .btn_cv {
  width: 100%;
  margin-top: 3vw;
  background-color: #fff;
  -webkit-box-shadow: 0 0.3rem 0 0 #b8bdba;
  box-shadow: 0 0.3rem 0 0 #b8bdba;
  color: #009949;
}

.dlLink .flex {
  align-items: center;
}

@media (min-width: 768px) and (max-width: 979px) {
  .dlArea .btn_cv {
    margin-left: 10px;
  }
}

.btn_cv.ver2 {
  background-color: #fff;
  border: 2px solid #ea5800;
  -webkit-box-shadow: 0 0.3rem 0 0 #ea5800;
  box-shadow: 0 0.3rem 0 0 #ea5800;
  color: #ea5800;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 16vw;
  right: 2.5vw;
}
.pagetop img {
  width: auto;
}

.nocard {
  font-size: 2.67vw !important;
}

.border-orange {
  border: solid 2px #ea5800;
}

/* 767px以下指定 (スマホのみ) */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .spNone {
    display: none;
  }
  .footerContents .logoArea img {
    width: 40%;
  }
  .fSmall_sp {
    font-size: 13.5px;
  }
  .fotterMargin {
    margin-bottom: 15vw;
  }
  /* .openModal span,
  .btn_cv span {
    font-size: 0.857rem;
  } */
  .btn_account_group .openModal span,
  .btn_account_group .btn_cv span {
    font-size: 0.928rem;
  }
  .bannerWrap {
    width: 70%;
    margin: auto;
    margin-bottom: 3vw;
  }
  .fixed_banner a {
    width: 100%;
  }
  .dlArea .btn_cv {
    font-size: 1rem;
  }
  .pagetop img {
    width: 11.7vw;
  }
  .list_note li {
    font-size: 0.714rem;
  }
  .list_note {
    padding-left: 0.714rem;
  }
  .list_note li {
    text-indent: -0.714rem;
  }
  .btn_cv,
  .openModal {
    min-height: 11vw;
    height: auto;
    padding: 10px;
  }
  .modalContents .cv_text03 {
    font-size: 3.7vw !important;
  }
}
/* スマホサイズ以上 */
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
  .kvArea {
    max-width: 100%;
    margin: auto;
  }
  .spOnly {
    display: none;
  }
  .pcOnly-tab {
    display: block !important;
  }
  .pcOnly-tab-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .kvArea img {
    width: auto;
  }
  .fixed_banner {
    width: 80vw;
    margin: auto;
  }
  .fixed_banner .btn_cv {
    width: 100%;
  }
  .cv_text03 {
    font-size: 1.25rem !important;
  }
  .nocard {
    font-size: 1.5vw !important;
  }
  .sec01 h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

/* デバイス幅がPCコンテンツ幅以上 */
@media (min-width: 980px) {
  html {
    font-size: 24px;
  }
  body {
    line-height: 1.8;
  }
  .contentsWrap {
    padding: 50px 0 65px;
  }
  .pcOnly {
    display: block;
  }
  .pcOnly-inline {
    display: inline !important;
  }
  .spOnly-tab {
    display: none;
  }
  header {
    width: 100%;
    max-width: 1080px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: auto;
    padding: 23px 0 25px;
  }
  header .code {
    font-size: 0.583rem;
  }
  .pcNone {
    display: none;
  }
  .contentsWrap > section {
    width: 980px;
    margin: auto;
  }
  .contentsWrap > section:not(:first-child) {
    margin-top: 50px;
  }

  .appNote {
    width: auto;
    max-width: 100%;
  }
  .wrap > section#accordion {
    padding: 0;
  }
  .tCenter_pc {
    text-align: center !important;
  }
  footer {
    padding: 40px 0 150px;
  }
  footer .logoArea {
    margin-top: 50px;
  }
  .pagetop {
    bottom: 1rem;
    right: 1rem;
  }
  .pagetop img {
    max-width: none;
  }
  .secInner > * {
    margin-bottom: 20px;
  }
  .sec02 .huyo {
    margin-bottom: 50px;
  }

  .footerContents small {
    margin-top: 25px;
  }

  /* 下記から差分 */
  .sec01 > p {
    margin-bottom: 35px;
  }
  .openModal,
  .btn_cv {
    width: 600px;
    max-width: 100%;
    height: 80px;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 0 0 #a8470d;
    box-shadow: 0 10px 0 0 #a8470d;
    margin-top: 40px;
    margin-bottom: 10px !important;
  }
  .btn_cv.ver2 {
    border: 4px solid #ea5800;
  }
  .openModal span:last-child,
  .btn_cv span:last-child {
    right: 28px;
  }
  .list_note {
    font-size: 0.75rem;
  }
  section:not(.sec01) h2 {
    padding: 0;
    height: 70px;
  }
  .secInner {
    padding: 30px;
  }
  .border-orange .secInner {
    padding: 45px 0;
  }
  .sec02 h3,
  .sec04 h3 {
    width: 500px;
    height: 40px;
    margin-bottom: 25px;
    line-height: 1;
  }
  .sec02 h3:not(:first-child),
  .sec04 h3:not(:first-child) {
    margin-top: 40px;
  }
  .contentsWrap > div {
    width: 980px;
    margin: auto;
  }
  .openModal .link_window,
  .btn_cv .link_window {
    width: 18px;
  }
  .footerContents div p:first-of-type {
    margin-bottom: 0;
  }
  [class^="sec0"]:not(.sec01) {
    border: solid 4px #009949;
  }
  .sec01 .read::before,
  .sec01 .read::after {
    width: 33px;
    height: 55px;
  }
  .sec01 .read::before {
    left: 120px;
  }
  .sec01 .read::after {
    right: 130px;
  }
  .flex-3col li:not(:last-child) span::before {
    width: 42.94px;
    height: 38.44px;
    right: -55px;
    top: calc(65%);
    -ms-transform: translateY(-65%);
    transform: translateY(-65%);
    -webkit-transform: translateY(-65%);
  }
  .sec04 .btn_cv {
    margin-top: 30px;
  }
  .dlArea .secInner {
    padding: 25px;
  }
  .dlArea .secInner h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .dlLink {
    width: 592px;
    margin: auto;
  }
  .dlArea .btn_cv {
    width: 400px;
    height: 60px;
    margin: 0;
  }
  .dlLink .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sec06 > .secInner > .btn_cv {
    width: 100%;
  }
  .sec07 .list_circle {
    font-size: 18px;
  }
  .fixed_banner {
    bottom: 20px;
  }
  .fixed_banner {
    width: 600px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .fixed_banner .smartBannerClose {
    width: 23px;
    height: 23px;
  }
  .flex-3col li span img {
    height: auto;
  }
  .sec07 .list_circle,
  .list_note {
    padding-left: 18px;
  }
  .sec07 .list_circle > *,
  .list_note > * {
    text-indent: -18px;
  }
  .btn_account_group > a:first-child {
    margin-bottom: 40px;
  }
  .btn_account_group > a:last-child {
    margin-top: 30px;
  }
  .border-orange {
    border: solid 4px #ea5800;
  }
  #accordion .accordion-content {
    border: solid 4px #009949;
  }
  .accordion-container .accordion-title {
    padding: 35px 0;
  }
  .accordion-container .accordion-title::before {
    width: 30px;
    height: 5px;
  }
  .accordion-container .accordion-title::after {
    width: 30px;
    height: 5px;
  }
  #accordion .accordion-content {
    padding: 30px;
  }
} /* PC表示 */

/* iphone5等小さめのスマホ対応 */
@media (max-width: 320px) {
  .spOnly-mini {
    display: block;
  }
  .sec01 .read::before {
    left: 0;
  }
  .sec01 .read::after {
    right: 0;
  }
  [class^="sec0"]:not(.sec01) h2,
  .sec02 h3,
  .sec04 h3 {
    width: 100%;
  }
}
.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -o-linear-gradient(top, white, black);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    to(black)
  );
  background: linear-gradient(to bottom, white, black);
}
.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    to(black)
  );
  background: -o-linear-gradient(top, white, black);
  background: linear-gradient(to bottom, white, black);
}
