@charset "utf-8";
/*  以下追記分
------------------------------------------------------------------*/

/*  _css_reset.scss リセットcss
---------------------------------*/
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: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
select, video {
    outline: 0;
}
* {
    box-sizing: border-box;
    outline: 0;
}

/*Reset for iOS Safari Button*/
input[type='submit'], input[type='button'] {
    appearance: button;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
}

input[type=submit]::-webkit-search-decoration, 
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}


/*  style.scss　共通設定
---------------------------------------*/
/** noie：ブラウザがieではないとき*/
.noie {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: #fff;
  text-align: left;
}
.noie .heading6 {
  margin-bottom: 40rem;
  font-weight: 500;
  font-size: 29rem;
  line-height: 1.79;
  letter-spacing: 0.04em;
}

.noie .exp {
  font-weight: 500;
  font-size: 16rem;
  line-height: 2.02;
  letter-spacing: 0.06em;
}

.noie .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600rem;
}

@media (max-width: 768px) {
  .noie .heading6 {
    margin-bottom: 30rem;
    font-size: 23rem;
  }
  .noie .exp {
    font-weight: 400;
    font-size: 13rem;
    line-height: 220%;
  }
  .noie .text {
    width: 80%;
    max-width: 400rem;
  }
}


/*基本設定*/
html {
  font-size: 0.078125vw;
}

body {
  opacity: 0;/*html読み込み完了するまで非表示*/
  color: #222;
  font-weight: 400;
  font-family: dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  transition: 1s;
}

/*html読み込み完了後、jsでクラス名ついたら表示する*/
body.wf-active, body.loading-delay {
  opacity: 1;
}

::-moz-selection {
  background: #e9e8e8;
  color: #222;
}

::selection {
  background: #e9e8e8;
  color: #222;
}

* {
  min-width: 0;
  min-height: 0;
}

a {
  color: #222;
  text-decoration: none;
}

img, svg {
  width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  html {
    font-size: 0.2666666667vw;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
}


/*　sp/pc　表示切り替え　*/
.sp {
  display: none;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.reg {
  line-height: 0;
  vertical-align: -0.4em;
}

.body_inner {
  position: relative;
  overflow: hidden;
}


/*背景画像*/
.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media (max-width: 768px) {
  .bg img {
    height: 140%;
    -o-object-position: center;
       object-position: center;
  }
}


/*MV*/
.first_view {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 1212rem;
  height: calc(100vh - 200rem);
  min-height: 525rem;
  margin: 26rem auto 140rem;
  border-radius: 40rem;
}

/*メイン画像*/
.first_view .img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.first_view .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 3%;
     object-position: 50% 3%;
}

/*ロゴ*/
.first_view .mobi_logo {
  position: absolute;
  top: 40rem;
  left: 45rem;
  width: 155rem;
}

@media (max-width: 768px) {
  .first_view {
    width: auto;
    height: 495rem;
    min-height: 0;
    margin: 22.5rem;
    border-radius: 14rem;
  }

  .first_view .mobi_logo {
    top: 23rem;
    left: 50%;
    transform: translateX(-50%);
    width: 112rem;
  }
}

/*ナビ*/
.first_view .menu {
  display: flex;
  position: absolute;
  top: 50rem;
  right: 60rem;
}
.first_view .menu .link {
  margin-right: 35rem;
  font-weight: 700;
  font-size: 17rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}
.first_view .menu .link a {
  display: block;
  color: #fff;
}
.first_view .menu .link:last-of-type {
  margin-right: 0;
}

/*SP時は非表示*/
@media (max-width: 768px) {
  .first_view .menu {
    display: none;
  }
}


/*メイン　キャッチコピー全体*/
.first_view .mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 487rem;
  padding-top: 26rem;
}

/*メイン　真ん中のロゴ*/
.first_view .mid .logo {
  width: 469rem;
}

/*メイン　真ん中のロゴ下のテキスト*/
.first_view .mid .txt {
  margin-top: 20rem;
  color: #fff;
  font-weight: 700;
  font-size: 30rem;
  line-height: 1.66;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .first_view .mid {
    width: 154rem;
    padding-top: 0;
  }

  .first_view .mid .logo {
    width: 154rem;
  }

  .first_view .mid .txt {
    display: none;
  }
}

/*アプリボタン*/
.first_view .app {
  display: flex;
  position: absolute;
  right: 40rem;
  bottom: 30rem;
}

.first_view .app .single {
  width: 175rem;
  margin-right: 20rem;
}

.first_view .app .single.apple {
  width: 140rem;
}

.first_view .app .single a {
  display: block;
  transition: 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.first_view .app .single a:hover {
  transform: scale(1.05);
}
.first_view .app .single:last-of-type {
  margin-right: 0;
}

@media (max-width: 768px) {
  .first_view .app {
    right: 50%;
    bottom: 22rem;
    transform: translateX(50%);
  }

  .first_view .app .single {
    width: 149rem;
    margin-right: 15rem;
  }

  .first_view .app .single.apple {
    width: 120rem;
  }
}




/*私たちの哲学*/
.about {
  display: flex;
  position: relative;
  width: 80%;
  margin: 140rem auto;
  padding-left: 20rem;
}

.about .ab2 {
  position: absolute;
  top: 0;
  right: -150rem;
  width: 476rem;
}

.about .ab1 {
  width: 569rem;
  color: #fff;
  text-align: left;
}

.about .heading2 {
  margin-bottom: 20rem;
  font-weight: 800;
  font-size: 31rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.03em;
}
.about .heading3 {
  padding-left: 5rem;
  font-weight: 800;
  font-size: 18rem;
  letter-spacing: 0.21em;
}

.about .exp {
  margin: 45rem 0 30rem;
  font-weight: 800;
  font-size: 35rem;
  line-height: 1.58;
  letter-spacing: 0.115em;
}

.about .exps {
  margin: 30rem 0 0;
  font-weight: 800;
  font-size: 18rem;
  line-height: 1.77;
  letter-spacing: 0.16em;
}

@media (max-width: 768px) {
  .about {
    display: block;
    width: auto;
    margin: 57rem 37rem;
    padding: 0;
  }

  .about .ab2 {
    top: -66rem;
    right: -191rem;
    width: 267rem;
  }

  .about .ab1 {
    width: auto;
  }

  .about .heading2 {
    font-size: 22rem;
  }

  .about .heading3 {
    margin: -4rem 0 -12rem -4rem;
    font-size: 16rem;
  }

  .about .exp {
    font-size: 28rem;
  }

  .about .exps {
    margin: -7rem 0 0;
    font-size: 15rem;
    line-height: 173%;
    text-align: justify;
  }
}


/*NEWS*/
.news {
  display: flex;
  width: 80%;
  margin: 140rem;
  background: #fff;
  color: #000;/*見出しの文字色*/
  padding: 80rem 90rem 90rem;
  border-radius: 25rem;
}
.news .com1 {
  width: 175rem;
  padding-top: 0;
  border: none;
}
.news .com2 {
  width: 100%;
  margin-left: 43rem;
}

.news .heading2 {
  margin-bottom: 25rem;
  font-weight: 800;
  font-size: 31rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  text-align: left;
  letter-spacing: 0.03em;
}
.news .heading3 {
  font-weight: 800;
  font-size: 18rem;
  text-align: left;
  letter-spacing: 0.21em;
}

.news .single {
  display: block;
  padding: 25rem 20rem;
  border-bottom: 0.5rem solid rgba(0, 0, 0, 0.5);
  text-align: left;
  color: #000;
}

.news .single:first-of-type {
  border-top: 0.5rem solid rgba(0, 0, 0, 0.5);
}

.news .s1 {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.65);/*日付の色*/
  font-size: 16rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
.news .s2 {
  font-size: 16rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
.news .s2 a{
  color: #000;
  text-decoration: underline;
}
.news .s2 a:hover{
  opacity: 0.7;
}

@media (max-width: 768px) {
  .news {
    display: block;
    width: auto;
    margin: 22.5rem 22.5rem 50rem;
    padding: 35rem;
    border-radius: 14rem;
  }

  .news .com1 {
    width: auto;
    margin: 0 0 33rem;
    padding-top: 0;
    border-top: none;
  }
  .news .com2 {
    width: auto;
    margin-left: 0;
  }
	
  .news .heading2 {
    margin-bottom: 16rem;
    font-size: 22rem;
  }
  .news .heading3 {
    font-size: 16rem;
  }


  .news .single {
    padding: 19rem 0;
  }
  .news .single:last-of-type {
    padding-bottom: 23rem;
  }

  .news .s1 {
    display: block;
    width: auto;
    height: auto;
    font-size: 15rem;
  }
  .news .s2 {
    font-size: 15rem;
    line-height: 160%;
  }
}



/*私たちのサービス*/
.service {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 140rem;
  padding: 80rem 0 90rem 90rem;
  border-radius: 25rem;
  background: #fff;
  color: #000;
  text-align: left;
}

.service .heading2 {
  margin-bottom: 20rem;
  font-weight: 800;
  font-size: 31rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.03em;
}

.service .heading3 {
  padding-left: 5rem;
  font-weight: 800;
  font-size: 18rem;
  letter-spacing: 0.21em;
}

.service .logo {
  width: 324rem;
  margin: 47rem auto 34rem 0;
}

.service .exp {
  font-weight: 800;
  font-size: 23rem;
  line-height: 1.47;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.service .exp2 {
  width: 340rem;
  margin-top: 18rem;
  font-weight: 800;
  font-size: 15rem;
  line-height: 1.86;
  text-align: justify;
  letter-spacing: 0.09em;
}

.service .ser1 {
  flex-basis: 34.2%;
}
.service .ser2 {
  transform: translateX(70rem);
}

.service .phones {
  display: flex;
}

.service .phones .single {
  width: 192rem;
  margin-right: 15rem;
}

.service .phones .single:last-of-type {
  margin-right: 0;
}
.service .btns {
  display: flex;
  margin-top: 40rem;
  gap: 15rem;
}

.service .btns a {
  display: block;
  width: 156rem;
  padding: 15rem 0;
  border-radius: 100rem;
  background-color: #000;
  color: #fff;
  font-weight: 800;
  font-size: 15rem;
  text-align: center;
}

.service .sidenote {
  flex-basis: 100%;
  margin: 44rem 90rem -26rem 0;
  padding: 25rem 25rem 21rem;
  background: #f5f5f5;
}

.service .sidenote .heading4 {
  margin-bottom: 8rem;
  font-weight: 700;
  font-size: 13rem;
}

.service .sidenote .txt {
  font-size: 12rem;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}


@media (max-width: 768px) {
  .service {
    display: block;
    width: auto;
    margin: 0 22.5rem;
    padding: 35rem;
    border-radius: 14rem;
  }

  .service .heading2 {
    font-size: 22rem;
  }
  .service .heading3 {
    margin: -4rem 0 -17rem -4rem;
    font-size: 16rem;
  }

  .service .logo {
    width: 195rem;
    margin-bottom: 251rem;
  }

  .service .exp {
    white-space: normal;
    font-size: 24rem;
    line-height: 154%;
    letter-spacing: 0.13em;
  }
  .service .exp2 {
    width: auto;
    margin-top: 12rem;
    font-size: 14rem;
    letter-spacing: 0.05em;
  }

  .service .ser2 {
    transform: none;
  }

  .service .phones {
    position: absolute;
    top: 211rem;
  }

  .service .phones .single {
    width: 99rem;
    margin-right: 10rem;
  }

  .service .btns {
    display: block;
    margin: 24rem 0 -4rem;
  }
  .service .btns a {
    width: auto;
    margin-bottom: 12.5rem;
    font-size: 15rem;
  }

  .service .sidenote {
    margin: 35rem 0 7rem 0;
  }
  .service .sidenote .heading4 {
    margin-bottom: 11rem;
  }
}



/** 
 * Campaign
 */
.campaign {
  width: 80%;
  margin: -90rem 140rem 145rem;
}
@media (max-width: 768px) {
  .campaign {
    width: auto;
    margin: 30rem 22.5rem;
  }
}


/*会社概要*/
.company {
  display: flex;
  width: 80%;
  margin: 140rem;
  color: #fff;
}
.company .com1 {
  width: 175rem;
  padding-top: 50rem;
  border-top: 4rem solid #fff;
}
.company .com2 {
  width: 100%;
  margin-left: 83rem;
}

.company .heading2 {
  margin-bottom: 25rem;
  font-weight: 800;
  font-size: 31rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  text-align: left;
  letter-spacing: 0.03em;
}
.company .heading3 {
  font-weight: 800;
  font-size: 18rem;
  text-align: left;
  letter-spacing: 0.21em;
}

.company .single {
  display: flex;
  align-items: flex-start;
  padding: 25rem 20rem;
  border-bottom: 0.5rem solid rgba(255, 255, 255, 0.5);
  text-align: left;
}

.company .single:first-of-type {
  border-top: 0.5rem solid rgba(255, 255, 255, 0.5);
}

.company .s1 {
  display: inline-block;
  width: 122rem;
  height: 100%;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
}
.company .s2 {
  font-size: 16rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .company {
    display: block;
    width: auto;
    margin: 30rem 37rem;
  }

  .company .com1 {
    width: auto;
    margin: 47rem 0 43rem;
    padding-top: 0;
    border-top: none;
  }
  .company .com2 {
    width: auto;
    margin-left: 0;
  }
	
  .company .heading2 {
    margin-bottom: 16rem;
    font-size: 22rem;
  }
  .company .heading3 {
    font-size: 16rem;
  }


  .company .single {
    display: block;
    align-items: flex-start;
    padding: 19rem 0;
  }
  .company .single:first-of-type {
    border-top: 2rem solid #fff;
  }
  .company .single:last-of-type {
    padding-bottom: 23rem;
    border-bottom: 2rem solid #fff;
  }

  .company .s1 {
    display: block;
    width: auto;
    height: auto;
    font-size: 15rem;
  }
  .company .s2 {
    font-size: 15rem;
    line-height: 160%;
  }
}

/*フッター*/
footer {
  margin-bottom: 140rem;
}
footer .logo {
  width: 300rem;
  margin: 0 auto 40rem;
}

footer .menu {
  display: flex;
  justify-content: center;
}
footer .menu .link {
  margin-right: 35rem;
  font-weight: 600;
  font-size: 17rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}
footer .menu .link a {
  display: block;
  color: #fff;
}
footer .menu .link:last-of-type {
  margin-right: 0;
}

footer .copy {
  color: #fff;
  font-size: 13rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.04em;
}

footer .links {
  display: flex;
  justify-content: center;
  margin: 60rem 0 28rem;
}
footer .links li {
  margin: 0 15rem;
}
footer .links a {
  color: #fff;
  font-weight: 500;
  font-size: 14rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  footer {
    margin-bottom: 70rem;
  }

  footer .logo {
    width: 133rem;
    margin: 60rem auto 30rem;
  }

  footer .menu .link {
    margin-right: 25rem;
    font-size: 15rem;
  }

  footer .copy {
    font-size: 12rem;
    line-height: 158%;
  }

  footer .links {
    margin: 36rem 0 17rem;
  }
  footer .links li {
    margin: 0 11rem;
  }
}




/*  singular.css　
	下層ページ　プライバシーポリシー
-------------------------------*/
.singular_page {
  color: #fff;
}
.singular_page .bg {
  background: url("../img/bg.jpg") repeat-y;
  background-position: top left;
  background-size: contain;
}
.singular_page .first_view {
  height: 120rem;
  min-height: 0;
  margin-bottom: 60rem;
}

.singular_page h1 .en {
  display: block;
  font-weight: 700;
  font-size: 30rem;
  font-family: dunbar-tall, dnp-shuei-gothic-gin-std, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.03em;
}
.singular_page h1 .ja {
  display: block;
  margin: 19rem 0 49rem;
  font-weight: 700;
  font-size: 18rem;
  letter-spacing: 0.21em;
}

.singular_page footer {
  margin-top: 100rem;
}

@media (max-width: 768px) {
  .singular_page .bg {
    background-position: center right;
    background-size: 200%;
  }

  .singular_page .first_view {
    height: 79rem;
    margin-bottom: 15rem;
  }

  .singular_page h1 .en {
    font-size: 25rem;
  }
  .singular_page h1 .ja {
    margin: 17rem 0 32rem;
    font-size: 17rem;
  }

  .singular_page footer {
    margin-top: -5rem;
  }
}

/*  block_contents.css
	下層ページの、main以下部分
-------------------------------*/
.block_editor_contents {
  width: 1020rem;
  margin: 0 auto;
  text-align: left;
}

.block_editor_contents h2:first-child,
.block_editor_contents h3:first-child,
.block_editor_contents p:first-child,
.block_editor_contents ol:first-child,
.block_editor_contents ul:first-child,
.block_editor_contents blockquote:first-child {
  margin-top: 0;
}
.block_editor_contents h2:last-child,
.block_editor_contents h3:last-child,
.block_editor_contents p:last-child,
.block_editor_contents ol:last-child,
.block_editor_contents ul:last-child,
.block_editor_contents blockquote:last-child {
  margin-bottom: 0;
}

.block_editor_contents h2 {
  position: relative;
  margin-top: 2.2em;
  padding: 3rem 0 3rem 20rem;
  font-weight: 700;
  font-size: 20rem;
  line-height: 140%;
  letter-spacing: 0.09em;
}
.block_editor_contents h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5rem;
  height: 100%;
  border-radius: 1px;
  background: #0f171f;
  content: "";
}

.block_editor_contents .highlight {
  background: rgba(15, 190, 207, 0.4);
}

.block_editor_contents h3 {
  margin-top: 2em;
  font-weight: 700;
  font-size: 15rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.block_editor_contents h3 + h3 {
  margin-top: 0;
}
.block_editor_contents h3 + p {
  margin-top: 0.7em;
}

.block_editor_contents p,
.block_editor_contents ol,
.block_editor_contents ul {
  margin: 1.76em 0;
  font-weight: 300;
  font-size: 15rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.block_editor_contents p + h3,
.block_editor_contents ol + h3,
.block_editor_contents ul + h3 {
  margin-top: 0.14em;
}
.block_editor_contents p + ol,
.block_editor_contents p + ul {
  margin-top: -2em;
}
.block_editor_contents ol > li > ol {
  margin-left: 1.5em;
}

.block_editor_contents a {
  color: #0fbecf;
  text-decoration: underline;
}
.block_editor_contents table {
  margin: 1.76em 0;
  color: #0f171f;
}
.block_editor_contents table tr:first-child th,
.block_editor_contents table tr:first-child td {
  border-top: 1px solid #666;
}
.block_editor_contents table th,
.block_editor_contents table td {
  padding: 1em;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
}
.block_editor_contents table th:first-child,
.block_editor_contents table td:first-child {
  width: 10em;
  border-left: 1px solid #666;
}

.block_editor_contents blockquote {
  margin: 62rem 0;
  padding: 64rem 72rem;
  border-radius: 20rem;
  background: #fff;
  color: #0f171f;
}
.block_editor_contents blockquote p {
  line-height: 193%;
}

.block_editor_contents .has-text-align-right {
  text-align: right;
}


@media (max-width: 768px) {
  .block_editor_contents {
    width: auto;
    margin: 0 7.4%;
  }

  .block_editor_contents h2 {
    font-size: 18rem;
    line-height: 138%;
  }
  .block_editor_contents h2::before {
    width: 4rem;
  }
	
  .block_editor_contents h3 {
    margin-top: 1.4em;
    font-size: 16rem;
    line-height: 160%;
  }
  .block_editor_contents h3 + p {
    margin-top: 0.5em;
  }

  .block_editor_contents p,
  .block_editor_contents ol,
  .block_editor_contents ul {
    font-size: 14rem;
    line-height: 178%;
    text-align: justify;
    letter-spacing: 0.05em;
  }

  .block_editor_contents ol > li > ol {
    margin-left: 1em;
  }

  .block_editor_contents table th:first-child,
  .block_editor_contents table td:first-child {
    width: 6em;
  }

  .block_editor_contents blockquote {
    margin: 35rem -7.4vw;
    padding: 38rem 7.4vw;
    border-radius: 0;
  }
}


/* privacy.scss　モーダル用css
-----------------------------*/
.modal_btn {
  color: #0fbecf;
  text-decoration: underline;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10005;
  overflow-y: scroll;
  visibility: hidden;
  box-sizing: border-box;
  width: 100vw;
  height: 100%;
  background: url("../img/bg.jpg") repeat-y;
  background-position: top left;
  background-size: cover;
  opacity: 0;
  text-align: left;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.modal.is-active {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s 0s;
}
.modal.is-active .btn {
  opacity: 1;
}

.modal_container {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100%;
  padding: 50rem 0;
}
/*ie用の記述*/
.modal_container _:-ms-lang(x)::-ms-backdrop, .modal_container {
  min-height: 100vh;
}

.modal_container::after {
  min-height: inherit;
  font-size: 0;
  content: "";
}

.modal_inner {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin: 5% auto;
}

.mod_img {
  position: relative;
}

.modal_content {
  transform: translateY(-100000rem);
  max-height: 756rem;
  padding: 50rem;
  border-radius: 20rem;
  background: #fff;
  opacity: 0;
  color: #333;
}

.modal_content li {
  position: relative;
  padding-left: 20rem;
}
.modal_content li .num {
  position: absolute;
  top: 0;
  left: 0;
}
.modal_content .inner {
  margin: 0 auto;
}
.modal_content .inner img {
  max-width: 756rem;
  max-height: 756rem;
}
.is-active .modal_content {
  transform: translate(0, 0);
  opacity: 1;
	width: 80%;
}

.modal_close_btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 15rem)) translateY(-50%);
  width: 84rem;
  height: 84rem;
  cursor: pointer;
  transition: 0.2s;
}
.modal_close_btn::before,
.modal_close_btn::after {
  position: absolute;
  top: 50%;
  left: 4rem;
  width: 60rem;
  height: 1rem;
  border-radius: 10rem;
  background: #fff;
  content: "";
}
.modal_close_btn::before {
  transform: rotate(45deg);
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .modal_container iframe {
    width: 100%;
  }
  .modal_content {
    width: 100%;
    padding: 40rem;
    border-radius: 0;
  }
  .modal_close_btn {
    top: -40rem;
    transform: translateX(-20%) translateY(-50%);
  }
}


/* 英語切り替え対応
-----------------------------*/


.tab-list {
  display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	font-size: 12px;
	width: 90%;
	
}
.tab-menu {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
	padding: 6px 20px;	
}
.tab-list li:first-child {
		border-top:1px solid #ccc;
	border-left:1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-right:1px solid #ccc;
	background: #EEE;
	color: #999;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;	
}
.tab-list li:nth-child(2) {
		border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #EEE;
	color: #999;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;	
}


.tab-list li:first-child.current {
color: #111;
	font-weight: bold;
	background: #fff;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;	
}


.tab-list li:nth-child(2).current {
color: #111;
	font-weight: bold;
	background: #fff;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;		
}


.content-box {
  display: none;
  width: 100%;
}
.content-box img {
  display: block;
  height: auto;
  width: 100%;
}




@media (max-width: 767px) {
	
.tab-list {
	font-size: 12px;
	width: 96%;	
}
.tab-menu {
	padding: 4px 16px;
}	
	
}
