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

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

* {
  box-sizing: border-box;
}

table {
  border-spacing: 0;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

strong {
  font-weight: bold;
}

ul {
  list-style: none;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
}

/* サイトレイアウト */
body {
  color: #000;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.header {
  height: 70px;
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #EA6C1F;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 999;
}
.header.hide {
  transform: translateY(-100%);
}
.header .header-inner {
  position: relative;
  max-width: 1470px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin: 0 auto;
}
.header .h-search .searchform {
  line-height: 1;
  position: relative;
}
.header .h-search .searchfield {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #666;
  background: #fff;
}
.header .h-search .searchsubmit {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
  color: #000;
  border: none;
  background: transparent;
}
.header .h-search .searchsubmit:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .header .h-logo {
    max-width: 222px;
  }
  .header .gnavi {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0 20px;
    font-size: 15px;
  }
  .header .gnavi li {
    margin: 3px 17px 3px 0;
  }
  .header .gnavi li a {
    opacity: 0.75;
    transition: 0.3s;
  }
  .header .gnavi li a:hover, .header .gnavi li a.current {
    text-decoration: underline;
    opacity: 1;
  }
  .header .gnavi-btn {
    display: none;
  }
  .header .h-search {
    margin: 0 20px 0 auto;
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 5px 0;
    height: 105px;
  }
  .header .header-inner {
    padding-bottom: 70px;
  }
  .header .h-logo {
    width: 100%;
  }
  .header .h-logo img {
    width: 174px;
    margin: 0 auto;
  }
  .header .h-navi {
    position: absolute;
    left: -300px;
    top: 99px;
    width: 300px;
    height: calc(100vh - 99px);
    background: #fff;
    transition: 0.3s;
  }
  .header .h-search {
    width: 78%;
    position: absolute;
    left: 11%;
    bottom: 10px;
  }
  .header .h-mail {
    width: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .header .gnavi {
    font-size: 18px;
    padding: 50px 10px 10px 20px;
  }
  .header .gnavi li {
    margin: 15px 0;
  }
  .header .gnavi li a {
    display: block;
    padding: 5px;
  }
  .header .gnavi-btn {
    margin-left: auto;
    display: block;
    position: absolute;
    top: 5px;
    left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 999;
    border-top: 1px solid #000;
  }
  .header .gnavi-btn span::before, .header .gnavi-btn span::after {
    display: block;
    content: "";
    width: 20px;
    height: 1px;
    top: 10px;
    background: #000;
    transition: 0.3s;
    margin-top: 7px;
  }
  .header .overlay {
    display: none;
  }
}

@media (max-width: 767px) {
  body.naviOpen {
    height: 100%;
    overflow: hidden;
  }
  body.naviOpen .header .h-navi {
    left: 0;
  }
  body.naviOpen .header .gnavi-btn {
    border: none;
  }
  body.naviOpen .header .gnavi-btn span::before {
    transform: translateY(3px) rotate(-45deg);
  }
  body.naviOpen .header .gnavi-btn span::after {
    transform: translateY(-5px) rotate(45deg);
  }
  body.naviOpen .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 99;
    display: block;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.65);
  }
}
.footer {
  background: #3D393A;
  color: #fff;
  text-align: center;
  padding: 25px 10px 35px;
  font-size: 16px;
}
.footer .l_inner {
  max-width: 1170px;
  margin: 0 auto;
}
.footer .f-link {
  text-align: center;
}
.footer .f-link a {
  color: #fff;
  text-decoration: none;
  display: inline;
}
.footer .f-link li {
  display: inline-block;
}
.footer .f-link li:first-child::before, .footer .f-link li::after {
  content: "|";
  margin: 0 4px;
}
.footer .f-link li:first-child::before {
  left: 0;
}
.footer .f-link li::after {
  right: 0;
}
.footer p.copy {
  margin: 3px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding: 18px 3%;
    font-size: 15px;
  }
  .footer .f-link li {
    display: inline;
  }
}

.page-wrap {
  line-height: 1.4;
  color: #3e3a39;
}
.page-wrap * {
  box-sizing: border-box;
}
.page-wrap img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.page-wrap a {
  color: #3e3a39;
  text-decoration: none;
  transition: 0.3s;
}
.page-wrap a:hover {
  opacity: 0.8;
}
.page-wrap strong, .page-wrap .bld {
  font-weight: bold;
}
.page-wrap.noimage {
  max-width: 710px;
  margin: auto;
  line-height: 1.8;
  padding-bottom: 30px;
}
.page-wrap.noimage .l_inner {
  max-width: 710px;
}
.page-wrap .page-ttl {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #3e3a39;
}
.page-wrap .page-ttl.uline {
  border-bottom: 2px solid #EB6C1F;
  margin-bottom: 50px;
  line-height: 1.4;
}
.page-wrap .page-header {
  text-align: center;
}
.page-wrap .page-header h1.page-ttl {
  margin: 0;
}
.page-wrap h2, .page-wrap h3, .page-wrap p {
  margin: 0;
}
.page-wrap .sec-ttl {
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  padding-bottom: 5px;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #3e3a39;
  border-bottom: 2px solid #EC6C1F;
}
@media (max-width: 767px) {
  .page-wrap .sec-ttl {
    font-size: 25px;
    border-width: 1px;
  }
}
.page-wrap .txt-c {
  text-align: center;
}
.page-wrap .btn {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  padding: 35px 45px 35px 40px;
  text-align: center;
  background: url("../img/common/icn_arrow.png") no-repeat right 20px center #EC6C1F;
  max-width: 550px;
  margin: 0 auto;
}
.page-wrap .btn-top {
  display: block;
  padding: 10px 20px;
  margin: 30px auto 0;
  width: 124px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .page-wrap {
    padding-top: 70px;
  }
  .page-wrap .l_inner {
    padding: 0 10px;
    max-width: 1170px;
    margin: 0 auto;
  }
  .page-wrap .l_box-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .page-wrap .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-wrap {
    padding-top: 105px;
  }
  .page-wrap .l_inner {
    padding: 0 3%;
  }
  .page-wrap .pc {
    display: none;
  }
  .page-wrap .page-ttl.uline, .page-wrap .page-ttl.sp-fnt-s {
    font-size: 30px;
  }
  .page-wrap .btn {
    max-width: 78%;
    font-size: 16px;
    padding: 18px 20px;
    background-position: right 10px center;
    background-size: 9px auto;
  }
}

/*top*/
.home .header {
  border: none;
}

.top-wrap {
  font-size: 16px;
}
.top-wrap .txt-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.top-wrap .sec-ttl {
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .top-wrap .top-banner {
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
  }
  .top-wrap .top-banner li {
    margin-bottom: 6px;
    max-width: 350px;
  }
  .top-wrap .top-banner li:nth-last-child(2) {
    margin-left: 12px;
  }
  .top-wrap .top-banner li.vcf {
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .top-wrap .top-banner {
    padding: 5px 3% 2px;
  }
  .top-wrap .top-banner li {
    margin-bottom: 5px;
  }
  .top-wrap .top-banner .vcf .w-\[728px\] {
    width: 100% !important;
  }
  .top-wrap .top-banner .vcf .h-\[90px\] {
    height: auto !important;
    padding-top: 0.5em;
    padding-bottom: 1em;
  }
  .top-wrap .top-banner .vcf .flex {
    flex-wrap: wrap;
    justify-content: center !important;
    align-content: center;
  }
  .top-wrap .top-banner .vcf .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .top-wrap .top-banner .vcf .pr-6, .top-wrap .top-banner .vcf .pl-6 {
    padding: 0 !important;
  }
  .top-wrap .top-banner .vcf .mr-2 {
    margin-right: 0 !important;
  }
  .top-wrap .top-banner .vcf .text-\[19px\] {
    text-align: center;
    padding: 10px 0;
  }
  .top-wrap .top-banner .vcf button {
    margin-top: 10px !important;
  }
}
.top-wrap .mv {
  border-top: 1px solid #EA6C1F;
}
.top-wrap .mv h1 {
  margin: 0;
}
.top-wrap .information .btn {
  margin: 75px auto 80px;
}
.top-wrap .information .info-ttl {
  margin: 0 auto 30px;
  max-width: 700px;
  text-align: center;
  font-size: 50px;
  line-height: 1.3;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.top-wrap .information .news-wrap {
  max-width: 700px;
  margin: 85px auto 60px;
}
.top-wrap .information .news-wrap .bld {
  color: #000;
}
.top-wrap .information .news-wrap .news-box {
  border: 1px solid #000;
  padding: 1px 0;
}
.top-wrap .information .news-wrap .news-box .box-inner {
  height: 150px;
  overflow-y: scroll;
  padding: 14px;
}
.top-wrap .information .news-wrap dl {
  margin: 0;
  font-size: 16px;
}
.top-wrap .information .news-wrap dl dt {
  font-weight: bold;
  margin: 0 0 5px;
  color: #000;
}
.top-wrap .information .news-wrap dl dd {
  margin: 0 0 20px;
}
.top-wrap .information .news-wrap dl:last-child dd {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .top-wrap .information {
    margin-bottom: 60px;
    /*news削除分*/
  }
}
@media (max-width: 767px) {
  .top-wrap .information {
    margin: 25px auto 30px;
  }
  .top-wrap .information .info-ttl {
    font-size: 25px;
    margin-bottom: 5px;
  }
  .top-wrap .information .news-wrap {
    margin: 23px auto;
  }
  .top-wrap .information .news-wrap .news-box .box-inner {
    padding: 7px 10px;
  }
  .top-wrap .information .news-wrap dl dt {
    margin: 0;
  }
  .top-wrap .information .news-wrap dl dd {
    margin-bottom: 25px;
  }
  .top-wrap .information .btn {
    margin: 25px auto 23px;
  }
}
.top-wrap .lead {
  text-align: center;
}
.top-wrap .lead .list {
  margin-top: 60px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  background: url("../img/top/top_img_10.png") no-repeat center bottom;
}
.top-wrap .lead .list li {
  width: 25%;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 0 10px;
}
.top-wrap .lead .list li:first-child p {
  margin-bottom: 0 !important;
}
.top-wrap .lead .list li img {
  max-width: 110px;
}
.top-wrap .lead .list p {
  margin-bottom: 5px;
  line-height: 1.2;
}
.top-wrap .lead .txt01 {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 32px;
  padding: 5px 0 30px;
  color: #000;
}
@media (max-width: 767px) {
  .top-wrap .lead .list {
    margin-top: 20px;
    padding-bottom: 25px;
    background-size: 45px auto;
  }
  .top-wrap .lead .list li {
    width: 50%;
    margin-bottom: 20px;
  }
  .top-wrap .lead .txt01 {
    font-size: 16px;
    padding: 5px 0 20px;
  }
}
.top-wrap .example .bg {
  background: #535353;
  padding: 20px 5px 45px;
}
.top-wrap .example .sec-ttl {
  color: #fff;
}
.top-wrap .example .sec-ttl .fnt-s {
  font-size: 30px;
}
.top-wrap .example .list {
  background: #DDDDDD;
}
.top-wrap .example .list table {
  line-height: 1.3;
}
.top-wrap .example .list th {
  text-align: left;
  font-weight: normal;
}
.top-wrap .example .list td {
  padding-left: 10px;
}
.top-wrap .example .btn {
  margin: 85px auto 75px;
}
@media (min-width: 768px) {
  .top-wrap .example .list {
    padding: 15px 10px 5px;
    max-width: 950px;
    margin: 30px auto 0;
    justify-content: center;
  }
  .top-wrap .example .list .box:first-child {
    margin-right: 9%;
  }
  .top-wrap .example .list th {
    background: url("../img/top/top_img_23.png") repeat-x 0 center;
  }
  .top-wrap .example .list th span {
    display: inline-block;
    background: #DDDDDD;
    padding-right: 5px;
  }
}
@media (max-width: 767px) {
  .top-wrap .example .l_inner {
    padding: 0;
  }
  .top-wrap .example .bg {
    padding: 20px 3% 15px;
  }
  .top-wrap .example .sec-ttl .fnt-s {
    font-size: 15px;
  }
  .top-wrap .example .list {
    margin-top: 15px;
    padding: 3px 8px 10px;
  }
  .top-wrap .example .btn {
    margin: 40px auto;
  }
}
.top-wrap .road .txt-wrap {
  max-width: 710px;
}
.top-wrap .road .box {
  display: flex;
  margin-top: 20px;
}
.top-wrap .road .box:nth-of-type(3) {
  margin-bottom: 40px;
}
.top-wrap .road .box .icon {
  width: 97px;
  margin-right: 13px;
}
.top-wrap .road .box .txt {
  width: calc(100% - 110px);
}
.top-wrap .road .box .ttl {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 5px;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-wrap .road .box {
    margin-top: 15px;
  }
  .top-wrap .road .box:nth-of-type(3) {
    margin-bottom: 20px;
  }
  .top-wrap .road .box .icon {
    width: 50px;
    margin-right: 10px;
  }
  .top-wrap .road .box .txt {
    width: calc(100% - 60px);
  }
  .top-wrap .road .box .ttl {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.top-wrap .matching {
  margin-top: 75px;
}
.top-wrap .matching .list {
  margin: 25px 0 80px;
  display: flex;
  justify-content: space-between;
}
.top-wrap .matching .list li {
  width: 17.8%;
}
@media (max-width: 767px) {
  .top-wrap .matching {
    margin-top: 25px;
  }
  .top-wrap .matching .list {
    margin: 15px 0 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-wrap .matching .list li {
    width: 29.2%;
    margin: 0 2.06% 10px;
  }
}
@media (min-width: 768px) {
  .top-wrap .profile .l_box-wrap {
    margin: 40px auto 105px;
    justify-content: space-between;
  }
  .top-wrap .profile .l_box-wrap .image {
    width: 32.2%;
  }
  .top-wrap .profile .l_box-wrap .txt {
    width: 65%;
    padding-bottom: 210px;
    position: relative;
    line-height: 1.5;
  }
  .top-wrap .profile .l_box-wrap .txt .book {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .top-wrap .profile .sec-ttl {
    margin-bottom: 17px;
  }
  .top-wrap .profile .image {
    float: left;
    width: 48.2%;
    margin: 0 3.6% 5px 0;
  }
  .top-wrap .profile .book {
    max-width: 66.6%;
    margin: 15px auto 42.5px;
  }
}
.top-wrap .jeccica .sec-ttl {
  margin-bottom: 15px;
}
.top-wrap .jeccica .ttl {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}
.top-wrap .jeccica p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .top-wrap .jeccica .sec-ttl {
    margin-bottom: 5px;
  }
  .top-wrap .jeccica p:nth-of-type(4) {
    margin-bottom: 0;
  }
}
.top-wrap .voice {
  margin: 85px auto 0;
}
.top-wrap .voice .l_inner {
  max-width: 970px;
}
.top-wrap .voice .accordion {
  margin: 70px auto 0;
}
.top-wrap .voice .accordion li:nth-of-type(1) .box::before {
  background-image: url("../img/top/top_img_24.png");
}
.top-wrap .voice .accordion li:nth-of-type(2) .box::before {
  background-image: url("../img/top/top_img_25.png");
}
.top-wrap .voice .accordion li:nth-of-type(3) .box::before {
  background-image: url("../img/top/top_img_26.png");
}
.top-wrap .voice .accordion li:nth-of-type(4) .box::before {
  background-image: url("../img/top/top_img_27.png");
}
.top-wrap .voice .accordion li:nth-of-type(5) .box::before {
  background-image: url("../img/top/top_img_28.png");
}
.top-wrap .voice .accordion li:nth-of-type(6) .box::before {
  background-image: url("../img/top/top_img_29.png");
}
.top-wrap .voice .accordion .box {
  border: solid 1px #101033;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 90px;
  margin-bottom: 50px;
}
.top-wrap .voice .accordion .box::before {
  display: block;
  width: 93px;
  height: 93px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  left: 15px;
  top: -40px;
}
.top-wrap .voice .accordion h3 {
  margin-left: 95px;
  font-size: 25px;
  line-height: 1;
  color: #171735;
  margin-bottom: 5px;
}
.top-wrap .voice .accordion h3 span {
  font-size: 36px;
}
.top-wrap .voice .accordion .more {
  background: url("../img/top/top_img_30.png") no-repeat right 13px center #101033;
  text-align: center;
  color: #fff;
  line-height: 45px;
  width: calc(100% - 100px);
  margin: auto;
  position: absolute;
  bottom: 25px;
  left: 50px;
  cursor: pointer;
}
.top-wrap .voice .accordion .txt {
  position: relative;
  overflow: hidden;
}
.top-wrap .voice .accordion .txt.is-hide {
  height: 42px;
}
.top-wrap .voice .atten {
  margin-top: -30px;
}
.top-wrap .voice .btn {
  margin: 90px auto 75px;
}
@media (min-width: 768px) {
  .top-wrap .voice .accordion li {
    width: 45.2%;
  }
  .top-wrap .voice .accordion li:nth-child(2n) {
    margin-left: 9.6%;
  }
}
@media (max-width: 767px) {
  .top-wrap .voice {
    margin: 35px auto 0;
  }
  .top-wrap .voice .accordion .box {
    margin-bottom: 30px;
  }
  .top-wrap .voice .accordion .box::before {
    width: 60px;
    height: 60px;
    left: 10px;
    top: -20px;
  }
  .top-wrap .voice .accordion h3 {
    margin-left: 65px;
    font-size: 21px;
  }
  .top-wrap .voice .accordion h3 span {
    font-size: 21px;
  }
  .top-wrap .voice .accordion .more {
    left: 5%;
    width: 90%;
  }
  .top-wrap .voice .btn {
    margin: 45px auto 30px;
  }
}

/*rakuten*/
.rakuten-wrap .box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rakuten-wrap .line-wrap {
  text-align: center;
  font-weight: 700;
}
.rakuten-wrap .line-wrap .btn {
  margin-bottom: 10px;
}
.rakuten-wrap .line-wrap .btn.line-btn {
  background-color: #02C755;
  position: relative;
}
.rakuten-wrap .line-wrap .btn.line-btn::before {
  display: block;
  content: "";
  background: url("../img/rakuten_26.png") no-repeat 0 0;
  width: 82px;
  height: 77px;
  position: absolute;
  top: 15px;
  left: 20px;
}
.rakuten-wrap .line-wrap .txt {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .rakuten-wrap .line-wrap .btn.line-btn::before {
    top: 9px;
    left: 15px;
    background-size: 41px auto;
    width: 41px;
    height: 39px;
  }
  .rakuten-wrap .line-wrap .qr {
    max-width: 46%;
  }
}
.rakuten-wrap .list {
  padding-bottom: 85px;
  max-width: 1050px;
  margin: 30px auto 0;
  background: url("../img/rakuten_17.png") no-repeat center bottom;
}
.rakuten-wrap .list .ttl {
  margin-top: 10px;
  font-size: 32px;
  color: #000;
  text-align: left;
  line-height: 1.3;
  font-weight: bold;
}
@media (min-width: 768px) {
  .rakuten-wrap .list li {
    width: 31%;
    margin-bottom: 25px;
  }
  .rakuten-wrap .list li:nth-child(3n-1) {
    margin-right: 3.5%;
  }
}
@media (max-width: 767px) {
  .rakuten-wrap .list {
    padding: 0 1% 45px;
    margin: 10px auto 0;
    background-size: 86px auto;
  }
  .rakuten-wrap .list li {
    width: 47.2%;
    margin-bottom: 25px;
  }
  .rakuten-wrap .list li:nth-child(2n-1) {
    margin-right: 5.6%;
  }
  .rakuten-wrap .list .ttl {
    font-size: 16px;
    margin-top: 5px;
  }
}
.rakuten-wrap .point .txt {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .rakuten-wrap .point .txt {
    margin: 25px 0 20px;
  }
  .rakuten-wrap .point .photo {
    max-width: 124px;
  }
}
.rakuten-wrap .mv h1 {
  margin: 0;
}
.rakuten-wrap .mv img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .rakuten-wrap .mv .l_inner {
    padding: 0;
  }
}
.rakuten-wrap .message {
  text-align: center;
}
.rakuten-wrap .message .line-wrap .btn-wrap {
  margin: 35px auto 45px;
}
@media (min-width: 768px) {
  .rakuten-wrap .message {
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .rakuten-wrap .message .line-wrap .btn-wrap {
    margin: 10px auto 20px;
  }
}
.rakuten-wrap .tubo {
  margin: 60px auto 90px;
}
.rakuten-wrap .tubo .sec-ttl {
  margin-bottom: 35px;
}
.rakuten-wrap .tubo .list {
  padding-bottom: 100px;
}
.rakuten-wrap .tubo .point .txt {
  margin: 15px auto 70px;
}
.rakuten-wrap .tubo .story {
  font-weight: 700;
  color: #000;
}
.rakuten-wrap .tubo .story .txt {
  line-height: 1.15;
}
.rakuten-wrap .tubo .story .red {
  font-size: 50px;
  color: #e30012;
}
@media (min-width: 768px) {
  .rakuten-wrap .tubo .story {
    font-size: 32px;
  }
  .rakuten-wrap .tubo .story .box {
    justify-content: space-between;
    letter-spacing: -1px;
  }
  .rakuten-wrap .tubo .story .txt, .rakuten-wrap .tubo .story .image {
    width: 47.8%;
  }
  .rakuten-wrap .tubo .story .box01 {
    margin: 70px auto 40px;
  }
  .rakuten-wrap .tubo .story .box01 img, .rakuten-wrap .tubo .story .bx03 img {
    margin: 10px 0 0 auto;
  }
  .rakuten-wrap .tubo .story .box02 {
    margin-bottom: 30px;
  }
  .rakuten-wrap .tubo .story .box02 .txt {
    order: 1;
  }
  .rakuten-wrap .tubo .story .box02 .image {
    order: 2;
  }
}
@media (max-width: 767px) {
  .rakuten-wrap .tubo {
    margin: 50px auto 30px;
  }
  .rakuten-wrap .tubo .sec-ttl {
    margin-bottom: 8px;
  }
  .rakuten-wrap .tubo .list {
    margin: 35px auto 0;
    padding-bottom: 30px;
  }
  .rakuten-wrap .tubo .story {
    margin-bottom: 40px;
  }
  .rakuten-wrap .tubo .story .red {
    font-size: 25px;
  }
  .rakuten-wrap .tubo .story .box .image {
    max-width: 72%;
    margin: 15px auto;
  }
  .rakuten-wrap .tubo .point .txt {
    margin: 15px auto;
  }
}
.rakuten-wrap .thoughts .sec-ttl {
  margin-bottom: 20px;
}
.rakuten-wrap .thoughts .box {
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
}
.rakuten-wrap .thoughts .box .txt {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .rakuten-wrap .thoughts .box {
    min-height: 101px;
  }
  .rakuten-wrap .thoughts .box.txt-r .txt {
    padding-left: 17%;
  }
  .rakuten-wrap .thoughts .box.txt-r .image {
    left: 0;
  }
  .rakuten-wrap .thoughts .box.txt-l .txt {
    padding-right: 17%;
  }
  .rakuten-wrap .thoughts .box.txt-l .image {
    right: 0;
  }
  .rakuten-wrap .thoughts .box .image {
    position: absolute;
    top: 0;
    width: 14.3%;
  }
}
@media (max-width: 767px) {
  .rakuten-wrap .thoughts .sec-ttl {
    margin-bottom: 5px;
  }
  .rakuten-wrap .thoughts .box {
    margin-bottom: 15px;
  }
  .rakuten-wrap .thoughts .box.txt-r .image {
    float: left;
    padding: 0 5px 10px 0;
  }
  .rakuten-wrap .thoughts .box.txt-l .image {
    float: right;
  }
  .rakuten-wrap .thoughts .box.txt-l .image img {
    margin: 0 0 10px 5px;
  }
  .rakuten-wrap .thoughts .box .image {
    width: calc(14.3% + 5px);
  }
}
.rakuten-wrap .faq {
  margin: 70px 0 20px;
}
.rakuten-wrap .faq .sec-ttl {
  margin-bottom: 25px;
}
.rakuten-wrap .faq .qa-wrap {
  max-width: 700px;
  margin: 0 auto 30px;
}
.rakuten-wrap .faq .q, .rakuten-wrap .faq .a {
  display: flex;
}
.rakuten-wrap .faq .q .icon, .rakuten-wrap .faq .a .icon {
  width: 40px;
  margin-right: 12px;
}
.rakuten-wrap .faq .q .txt, .rakuten-wrap .faq .a .txt {
  width: calc(100% - 52px);
}
.rakuten-wrap .faq .q {
  margin-bottom: 10px;
}
.rakuten-wrap .faq .q .ttl {
  padding-top: 2px;
  font-size: 32px;
  line-height: 1.1;
  color: #000;
  font-weight: bold;
}
.rakuten-wrap .faq .a .txt {
  padding-top: 5px;
}
.rakuten-wrap .faq .line-wrap {
  margin-top: 90px;
}
.rakuten-wrap .faq .line-wrap .note {
  margin: 21px 0 40px;
  font-size: 20px;
  color: #ff000a;
}
@media (max-width: 767px) {
  .rakuten-wrap .faq {
    margin: 40px 0 20px;
  }
  .rakuten-wrap .faq .sec-ttl {
    margin-bottom: 10px;
  }
  .rakuten-wrap .faq .qa-wrap {
    margin-bottom: 15px;
  }
  .rakuten-wrap .faq .q .icon, .rakuten-wrap .faq .a .icon {
    width: 18px;
    margin: 2px 7px 0 0;
  }
  .rakuten-wrap .faq .q .txt, .rakuten-wrap .faq .a .txt {
    width: calc(100% - 25px);
  }
  .rakuten-wrap .faq .q {
    margin-bottom: 10px;
  }
  .rakuten-wrap .faq .q .ttl {
    font-size: 16px;
  }
  .rakuten-wrap .faq .a .txt {
    padding-top: 0;
    margin-top: -3px;
  }
  .rakuten-wrap .faq .line-wrap {
    margin-top: 45px;
  }
  .rakuten-wrap .faq .line-wrap .note {
    margin: 90px 0 40px;
    font-size: 16px;
  }
}

/*achievements*/
.achievements-wrap .box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.achievements-wrap .txt-wrap {
  max-width: 690px;
  margin: 0 auto;
}
.achievements-wrap .ttl {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .achievements-wrap .ttl {
    font-size: 16px;
  }
}
.achievements-wrap .mv .l_inner {
  padding: 0;
}
.achievements-wrap .mv img {
  margin: 0 auto;
}
.achievements-wrap .achievements {
  margin: 40px 0 70px;
  line-height: 1.45;
}
.achievements-wrap .achievements .sec-ttl {
  margin-bottom: 10px;
}
.achievements-wrap .achievements .ttl {
  margin: 25px 0 20px;
}
@media (max-width: 767px) {
  .achievements-wrap .achievements {
    margin: 15px 0 7px;
  }
  .achievements-wrap .achievements .ttl {
    display: none;
  }
  .achievements-wrap .achievements img {
    margin-top: 10px;
  }
}
.achievements-wrap .strategy .sec-ttl {
  margin-bottom: 40px;
}
.achievements-wrap .strategy .box {
  padding-bottom: 10px;
}
.achievements-wrap .strategy .box .ttl {
  text-align: center;
  margin: 20px 0 10px;
}
.achievements-wrap .strategy .box .ttl .uline {
  display: inline-block;
  border-bottom: 3px solid #01410F;
}
.achievements-wrap .strategy .box p {
  margin-bottom: 20px;
}
.achievements-wrap .strategy .box.box02 .ttl .uline {
  border-color: #810102;
}
.achievements-wrap .strategy .box.box03 .ttl .uline {
  border-color: #9C6D01;
  letter-spacing: -0.4px;
}
.achievements-wrap .strategy .box.box04 .ttl .uline {
  border-color: #093341;
}
@media (max-width: 767px) {
  .achievements-wrap .strategy .sec-ttl {
    margin: 20px auto 10px;
  }
  .achievements-wrap .strategy .box {
    padding-bottom: 0;
  }
  .achievements-wrap .strategy .box .ttl {
    margin: 10px 0 5px;
  }
  .achievements-wrap .strategy .box .ttl .uline {
    border-width: 1px;
  }
}
.achievements-wrap .case .sec-ttl {
  margin: 30px auto 35px;
}
.achievements-wrap .case .btn {
  margin: 45px auto 70px;
}
@media (min-width: 768px) {
  .achievements-wrap .case .l_box-wrap {
    justify-content: space-between;
  }
  .achievements-wrap .case .box {
    width: 47.83%;
    margin-bottom: 20px;
  }
  .achievements-wrap .case .box .ttl {
    margin: 5px 0;
  }
}
@media (max-width: 767px) {
  .achievements-wrap .case .sec-ttl {
    margin: 50px auto 15px;
  }
  .achievements-wrap .case .box {
    margin-bottom: 20px;
  }
  .achievements-wrap .case .box img {
    margin: 0 auto;
    max-width: 78.57%;
  }
  .achievements-wrap .case .box .ttl {
    margin: 15px 0 5px;
  }
  .achievements-wrap .case .btn {
    margin: -5px auto 25px;
  }
}

/*company*/
.company-wrap .l_inner {
  max-width: 720px;
}
.company-wrap .company-logo {
  padding: 35px 0 15px;
  display: block;
}
.company-wrap .company-logo img {
  max-width: 346px;
  display: block;
  margin: 0 auto;
  border: none;
}
.company-wrap .page-ttl {
  margin-top: 0;
}
.company-wrap .media-sec-ttl {
  margin-bottom: 5px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #EB6C1F;
}
.company-wrap table {
  margin-bottom: 35px;
  width: 100%;
  border: none !important;
  box-shadow: none;
}
.company-wrap th, .company-wrap td {
  padding: 5px 0 !important;
  vertical-align: top;
  border: none !important;
  font-size: 16px;
}
.company-wrap th p, .company-wrap td p {
  line-height: 2;
  margin-top: 0;
}
.company-wrap th .note, .company-wrap td .note {
  font-size: 14px;
}
.company-wrap th {
  width: 100px;
  text-align: left;
  font-weight: normal;
}
.company-wrap .media-wrap {
  margin-bottom: 35px;
}
.company-wrap .profile .box-wrap .ttl {
  font-weight: bold;
  font-size: 40px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 5px;
}
.company-wrap .profile .box-wrap .bld {
  font-weight: bold;
}
.company-wrap .profile .box-wrap .book {
  margin: 20px 0 0 auto;
}
.company-wrap .profile .achievement {
  margin-top: 15px;
  font-weight: bold;
  max-width: 590px;
}
.company-wrap .profile .achievement .red {
  color: #b81c22;
}
.company-wrap .profile .achievement .line {
  border-bottom: 3px solid #b81c22;
  margin-bottom: 10px;
  padding-bottom: 3px;
}
.company-wrap .profile .achievement .fnt-m {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.company-wrap .profile .achievement .fnt-l {
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1;
}
.company-wrap .profile .media-wrap {
  padding: 20px 4%;
  background: #EAE5E2;
}
.company-wrap .profile .media-wrap .media-ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.2;
}
.company-wrap .profile .media-wrap ul {
  padding-left: 0;
  list-style: none;
}
.company-wrap .profile .media-wrap li {
  text-indent: -14px;
  margin-left: 14px;
}
.company-wrap .profile .media-wrap .youtube-wrap {
  margin: 10px 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.company-wrap .profile .media-wrap .youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company-wrap .suppliers {
  margin-bottom: 30px;
}
.company-wrap .suppliers p {
  line-height: 2;
}
.company-wrap .group {
  margin-bottom: 30px;
}
.company-wrap .group h3 {
  margin: 0;
  font-weight: bold;
}
.company-wrap .group p {
  line-height: 1.5;
  margin-bottom: 30px;
}
.company-wrap .group img {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .company-wrap .profile .media-sec-ttl {
    margin-bottom: 10px;
  }
  .company-wrap .profile .box-wrap {
    flex-wrap: wrap;
  }
  .company-wrap .profile .box-wrap .txt {
    width: 59%;
    margin-right: 3.6%;
  }
  .company-wrap .profile .box-wrap .image {
    width: 37.4%;
  }
}
@media (max-width: 767px) {
  .company-wrap .company-logo {
    padding: 10px 0 0;
  }
  .company-wrap th {
    width: 80px;
  }
  .company-wrap img {
    max-width: 100%;
    height: auto;
  }
  .company-wrap .media-wrap-cmmn {
    margin-bottom: 25px;
  }
  .company-wrap .profile .box-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .company-wrap .profile .box-wrap .txt {
    order: 1;
  }
  .company-wrap .profile .box-wrap .image {
    order: 3;
    width: 83%;
    display: flex;
    align-items: flex-start;
    margin: 20px auto 0;
  }
  .company-wrap .profile .box-wrap .image img {
    width: 47%;
  }
  .company-wrap .profile .box-wrap .image img:nth-child(2) {
    margin: 0 0 0 6%;
  }
  .company-wrap .profile .box-wrap .achievement {
    order: 2;
  }
  .company-wrap .profile .box-wrap .achievement .line {
    border-bottom: 2px solid #b81c22;
    margin: 10px 0 5px;
  }
  .company-wrap .profile .box-wrap .achievement .fnt-l {
    font-size: 20px;
  }
  .company-wrap .profile .box-wrap .achievement .fnt-m {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .company-wrap .profile .box-wrap .achievement .fnt-m .fnt-l {
    font-size: 23px;
  }
  .company-wrap .profile .media-wrap {
    padding: 15px 4%;
    margin-top: 20px;
  }
  .company-wrap .profile .media-wrap .media-ttl {
    margin-bottom: 5px;
  }
}

/*legal*/
.legal-wrap .info {
  max-width: 480px;
  margin: auto;
}
.legal-wrap dt {
  font-weight: bold;
}
.legal-wrap dd {
  margin-bottom: 30px;
}

/*privacy*/
.privacy-wrap .ttl {
  font-weight: bold;
  margin-top: 40px;
}
.privacy-wrap .ttl:first-of-type {
  margin-top: 0;
}

/*contact*/
.contact-wrap .txt-c {
  margin: -20px auto 20px;
}
.contact-wrap .form-wrap .item {
  width: 100%;
}
.contact-wrap .form-wrap input[type=text], .contact-wrap .form-wrap input[type=email], .contact-wrap .form-wrap input[type=tel], .contact-wrap .form-wrap textarea {
  padding: 10px 20px;
  width: 100%;
}
.contact-wrap .form-wrap input[type=submit] {
  padding: 10px 20px;
  margin-top: 40px;
  width: 124px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.contact-wrap .form-wrap input[type=submit]:hover {
  opacity: 0.8;
}
.contact-wrap .thanks .btn.dl {
  max-width: 450px;
  margin-top: 30px;
  padding: 25px 35px 25px 30px;
}
@media (min-width: 768px) {
  .contact-wrap .form-wrap {
    margin-top: -10px;
  }
  .contact-wrap .form-wrap .item.col {
    width: 48%;
  }
  .contact-wrap .form-wrap .item.col:nth-of-type(2) {
    margin-left: 4%;
  }
}
@media (max-width: 767px) {
  .contact-wrap .form-wrap {
    margin-top: -20px;
  }
  .contact-wrap .form-wrap input[type=submit] {
    margin-top: 20px;
  }
}

/*search*/
.search-wrap .item {
  margin-bottom: 20px;
}
.search-wrap .item .title {
  font-weight: bold;
}
.search-wrap .item .title a {
  text-decoration: underline;
}
.search-wrap .item .txt {
  font-size: 14px;
}

/*column*/
.column-wrap .page-ttl .sub {
  font-size: 35px !important;
  display: inline-block;
}
.column-wrap .page-ttl.column2 {
  font-size: 38px;
}
.column-wrap .column-list {
  text-align: center;
}
.column-wrap .column-list li {
  text-align: left;
  margin-bottom: 10px;
}
.column-wrap .column-list li a {
  text-decoration: underline;
}
.column-wrap .column-list.column2 li {
  text-indent: -4em;
  margin-left: 4em;
}
@media (max-width: 767px) {
  .column-wrap .page-ttl {
    line-height: 1.5;
  }
  .column-wrap .page-ttl .sub {
    font-size: 25px !important;
  }
}