@charset "UTF-8";
@import url(default.css);
@import url(component.css);

/*---------------------------------------------------------
全ページ共通スタイル

メモ

・フォントサイズ目安
pc -> sp
36 -> 
32 -> 
28 -> 
26 -> 
24 -> 
20 -> 16
18 -> 14
16 -> 13
14 -> 12




---------------------------------------------------------*/

:root {
  /* カラー */
  --color-brown: #C67317;
  --color-beige: #F6F2EB;
  --color-khaki: #B4945C;
  --color-blue: rgb(1, 64, 152);
  --color-blue2: #171f33;
  --color-blue3: #7d97cd;
  --color-green: #68f7e1;
  --color-gray: #f8f8f8;
  --color-black: #18212b;
  --color-red: #e3073b;
  --color-gradation: linear-gradient(90deg, rgba(0,45,173,1) 0%, rgba(0,186,255,1) 100%);
  --color-border: #c8d2e7;
  --color-border2: #014098;
  --color-purple: rgb(173, 137, 255); 

 


  /* 角丸 */
  --radius-content: 60px;


  /* フォントウェイト */
  --font-normal: 400;
  --font-bold: 700;

  /* 再生時間 */
  --duration-main: 0.3s;

  /* 行間 */
  --line-height-main: 2.1;
  --line-height-sub: 1.5;

  /* 文字間 */
  --letter-spacing-main: 0.1em;
  --letter-spacing-sub: 0.11em;

  /* イージング */
  --easing-opacity: cubic-bezier(0.26, 0.06, 0, 1);
  --easing-color: cubic-bezier(0.18, 0.06, 0.23, 1);
  --easing-transform: cubic-bezier(0.43, 0.05, 0.17, 1);


  /* フォント */
  --font-family-main: "Noto Sans JP", sans-serif;
  --font-family-en: "Sofia Sans Condensed", sans-serif;
  --font-family-en2: "Roboto", sans-serif;

  /* 余白 */
  --sp-padding: 0 10%;
}



html{
  font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
}
@media screen and (min-width: 768px) {
  html{
    font-size: 0.69444444444vw; /* = (10 / 1440) * 100) SPデザインが1440の場合 */
  }
}
@media screen and (min-width: 1440px) {
  html{
    font-size: 10px;
  }
}




/*　
---------------------------------------------------------*/

/* 要素設定 */
body {
  font-family: var(--font-family-main);
  font-weight: var(--font-normal);
  color: var(--color-black);
  line-height: var(--line-height-main);
  font-size: 18px;
  letter-spacing: var(--letter-spacing-main);
  /* background: #ccc; */
}

.c-font-en{
  font-family: var(--font-family-en);
  font-weight: 200;
  letter-spacing: 0.02em;
}
.c-font-en2{
  font-family: var(--font-family-en2);
  font-weight: 500;
  letter-spacing: 0.02em;
}



button,
select,
textarea,
input{
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  color: var(--color-black);
  font-size: 16px;
}

a{
  color: var(--color-black);
}

.c-ttl,
h1,h2,h3,h4,h5,h6{
  font-weight: var(--font-normal);
  line-height: var(--line-height-sub);
  letter-spacing: var(--letter-spacing-sub);
}

button,
a {
  text-decoration:none;
  transition: opacity var(--duration-main) var(--easing-opacity), 
              color var(--duration-main) var(--easing-color),
              background-color var(--duration-main) var(--easing-color),
              border-color var(--duration-main) var(--easing-color),
              box-shadow var(--duration-main) var(--easing-opacity),
              transform var(--duration-main) var(--easing-transform);
}

@keyframes scrolphoto{
  0%{ transform: translate(0%, 0%); }
  100%{ transform: translate(-100%, 0%); }
}


/* sp */
@media screen and (max-width: 767px) {


  :root {

    /* 角丸 */
    --radius-content: 3rem;

    /* 行間 */
    --line-height-main: 1.7;
    --line-height-sub: 1.5;

    /* 文字間 */
    --letter-spacing-main: 0;
    --letter-spacing-sub: 0.11em;

  }

  body {
    font-size: 1.4rem;
  }

}


/*
アイコンリスト
https://fonts.google.com/icons
*/

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/*　ヘッダー
---------------------------------------------------------*/


.l-head{
  position: relative;
  z-index: 100;
}

.l-head_main{
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content:flex-end;
  align-items:center;
  height: 100px;
}
.l-head_main:before{
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #171f3387;
  opacity: 0;
  transition: opacity var(--duration-main) var(--easing-color);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
}

.l-head_on .l-head_main:before{
    opacity: 1;  
}

.l-head_logo{
    position: absolute;
    z-index: 10;
    display: flex;
    align-items:center;
    gap: 0 39px;
    left: 45px;
    top: 26px;
}


.l-head_logo_img{
    display: block;
    width: 92px;
}
.l-head_logo_date{
    color: #fff;
    font-size: 16px;
}

.l-head_block{
  display: flex;
  align-items:center;
  margin-right: 142px;
  /* margin-top: 14px; */
}
.l-head_nav{
  display: flex;
  align-items:center;
  margin-right: 70px;
  gap: 0 83px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.l-head_nav a{
    color: #fff;
    font-size: 16px;
}
.l-head_nav a span{
    --line-color: #fff;
}


.l-head_entry{
  color: #fff;
  background-color: var(--color-blue);
  width: 210px;
  text-align: center;
  font-size: 18px;
  line-height: 70px;
  border-radius: 100px;
  margin-right: 50px;
  position: relative;
  z-index: 10;
  font-weight: 400;
  overflow: hidden;
}

.l-head_entry:before{
    content: "";
    z-index: -1;
    position: absolute;
    background: linear-gradient(90deg, rgba(154, 117, 234, 1) 0%, rgb(11 86 177 / 0%) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 100%;
    opacity: 0;
    transition: opacity var(--duration-main) var(--easing-opacity);
}

.l-head_open .l-head_entry{
  background-color: #fff;
  color: var(--color-blue);
}


.l-head_menu{
  width: 50px;
  height: 50px;
  display: block;
  /* background: #ccc; */
  position: relative;
  z-index: 10;
  /* position: fixed; */
  /* z-index: 3; */
  /* top: 25px; */
  /* right: 44px; */
  margin-right: 43px;
}

.l-head_menu:after,
.l-head_menu:before,
.l-head_menu span:before {
    content: "";
    z-index: 2;
    position: absolute;
    background: #fff;
    width: 30px;
    height: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* display: block; */
    /* border-radius: 10px; */
    margin: auto;
    transition: background  var(--duration-main) var(--easing-color), top  var(--duration-main) var(--easing-transform), bottom  var(--duration-main) var(--easing-transform), transform  var(--duration-main) var(--easing-transform);
    transition-delay: 0s,  var(--duration-main),  var(--duration-main), 0s;
    overflow: hidden;
    text-decoration: -999px;
}

.l-head_menu:before {
    bottom: 20px;
}
.l-head_menu:after {
    top: 20px;
}
.l-head_menu span{
  overflow: hidden;
  display: block;
  text-indent: -100px;
}

.l-head_menu span:before {
    transition: opacity 1ms ease;
    transition-delay: var(--duration-main);
    opacity: 1;
    z-index: 1;
    transform: translate(10px, 0px);
    transition: transform var(--duration-main) var(--easing-transform);

}


.l-head_menu.on:after,
.l-head_menu.on:before {
    transition: background var(--duration-main) var(--easing-color), top var(--duration-main) var(--easing-transform), bottom var(--duration-main) var(--easing-transform), transform var(--duration-main) var(--easing-transform);
    transition-delay: 0s, 0s, 0s, var(--duration-main);
}
.l-head_menu.on:before {
    bottom: 0px;
    transform: rotate(-45deg);
}
.l-head_menu.on:after {
    top: 0px;
    transform: rotate(45deg);
}
.l-head_menu.on span:before {
  opacity: 0;
}

.l-head_menu.on span:after {
  opacity: 1;
}

.l-head_navi_main{
  background: var(--color-blue);
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  transform: scale(0.9);
  opacity: 0;
}

.l-head_navi_main.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  transform: scale(1);
  opacity: 1;
}

.l-head_navi_main_inner{
  /* border: solid 1px #fff; */
  position: absolute;
  z-index: 1;
  left: 12.7%;
  top: 160px;
  bottom: 50px;
  overflow-y: auto;
  padding: 15px 38px 15px 0;
}

.l-head_nav2{
  display: flex;
  align-items:flex-start;
  gap: 0 273px;
}
.l-head_nav2_box1{
    display: grid;
    gap: 65px 0;
}
.l-head_nav2_box2{}
.l-head_nav2_link1{
  color: #fff;
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
}
.l-head_nav2_link1 span{
  display: inline-block;
  line-height: 1;
  --line-color: #fff;
}


.l-head_nav2_links{
    font-size: 18px;
    margin-top: 31px;
    display: grid;
    gap: 16px 0;
}
.l-head_nav2_links li{}
.l-head_nav2_links a{
  color: #fff;
}
.l-head_nav2_links a span{
  --line-color: #fff;
}



/* hover */

@media (hover: hover) and (pointer: fine) {

  .l-head_entry:hover:before{
    opacity: 1;

  }

  .l-head_menu:hover span:before{
    transform: translate(0px, 0px);
  }


}

@media screen and (max-width: 1580px) {
  .l-head_nav {
      margin-right: 55px;
      gap: 0 55px;
  }

}
@media screen and (max-width: 1350px) {

  .l-head_main{
    height: 80px;
}

  .l-head_logo{
    left: 32px;
    top: 20px;
    gap: 0 29px;
}
  .l-head_logo_img{
    width: 80px;
}
  .l-head_logo_date{
    font-size: 13px;
}
  .l-head_nav{
    margin-right: 42px;
    gap: 0 48px;
}

  .l-head_entry{
    margin-right: 31px;
    width: 176px;
    line-height: 55px;
}

  .l-head_menu{
    margin-right: 34px;
}

  .l-head_navi_main_inner{
    top: 130px;
}
  .l-head_nav2{
    gap: 0 160px;
}
  .l-head_nav2_box1{
    gap: 54px 0;
}

  .l-head_nav2_link1{
    font-size: 45px;
}

  .l-head_nav2_links{
    font-size: 16px;
    gap: 11px 0;
    margin-top: 25px;
  }
}

@media screen and (max-width: 1150px) {
  .l-head_nav{
    display: none;
  }
}


/* sp */
@media screen and (max-width: 767px) {


  .l-head{}
  .l-head_main{
    height: 8rem;
}
  .l-head_main:before{}
  .l-head_on .l-head_main:before{}
  .l-head_logo{
    left: 3.5rem;
    top: 2.8rem;
    gap: 0 0.8rem;
}
  .l-head_logo_img{
    width: 5rem;
}
  .l-head_logo_date{
    font-size: 0.9rem;
}
  .l-head_block{}
  .l-head_nav{}
  .l-head_nav a{}
  .l-head_nav a span{}
  .l-head_entry{
    margin-right: 1rem;
    width: 9.3rem;
    line-height: 3rem;
    font-size: 1.2rem;
}
  .l-head_open .l-head_entry{}
  .l-head_menu{
    width: 5rem;
    height: 5rem;
    margin-right: 2rem;
}
  .l-head_menu:after,
  .l-head_menu:before,
  .l-head_menu span:before {
    width: 2rem;
    height: 1px;
}
  .l-head_menu:before {
    bottom: 1rem;
}
  .l-head_menu:after {
    top: 1rem;
}
  .l-head_menu span{}
  .l-head_menu span:before {
    transform: translate(.4rem, 0px);
}
  .l-head_menu.on:after,
  .l-head_menu.on:before {}
  .l-head_menu.on:before {}
  .l-head_menu.on:after {}
  .l-head_menu.on span:before {}
  .l-head_menu.on span:after {}
  .l-head_navi_main{}
  .l-head_navi_main.on{}
  .l-head_navi_main_inner{
    left: 0;
    right: 0;
    padding: 8rem 10% 8rem;
    top: 8rem;
    bottom: 0;
}
  .l-head_nav2{
    display: grid;
    gap: 4rem 0;
}
  .l-head_nav2_box1{
    gap: 3rem 0;
}
  .l-head_nav2_box2{}
  .l-head_nav2_link1{
    font-size: 3.7rem;
}
  .l-head_nav2_link1 span{}
  .l-head_nav2_links{
    display: none;
}
  .l-head_nav2_links li{}
  .l-head_nav2_links a{}
  .l-head_nav2_links a span{}



}


/*　ファーストビュー
---------------------------------------------------------*/

/* sp */
@media screen and (max-width: 767px) {
}

/*　パンくず
---------------------------------------------------------*/

.l-breadcrumb{
    display: flex;
    /* justify-content:flex-end; */
    margin-top: 85px;
    /* flex-wrap: wrap; */
    color: rgba(255,255,255,0.5);
}

.l-mainv_mes + .l-breadcrumb{
    margin-top: 60px;
}

.l-breadcrumb li{
    font-size: 12px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.l-breadcrumb li:before {
    content: "";
    z-index: 1;
    position: absolute;
    background-color: #fff;
    left: -11px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 12px;
    margin: auto;
}
.l-breadcrumb li:first-child:before{
  display: none;
}


.l-breadcrumb li + li {
    margin: 0 0 0 24px;
}
.l-breadcrumb a{color: #fff;}

/* sp */
@media screen and (max-width: 767px) {

}



/*　コンテンツ幅
---------------------------------------------------------*/

.l-main{
  position: relative;
  z-index: 1;
}

.l-main:before{

  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.4);
}



.l-width{
  padding: 0 6.5%;
}
.l-inner1{
    max-width: 1620rem;
    margin: 0 auto;
}
.l-inner2{
    /* max-width: 126.3rem; */
    margin: 0 9rem;
}

/* sp */
@media screen and (max-width: 767px) {
}


/*　コンテンツ
---------------------------------------------------------*/
.l-content{
    /* padding-left: max(5.6%, 70px); */
    /* padding-right: max(5.6%, 70px); */
    padding-left: 5.6%;
    padding-right: 5.6%;
}
.l-content_inner{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}




/* sp */
@media screen and (max-width: 767px) {

  .l-content{
    padding: var(--sp-padding);
}
  .l-content_inner{}


}



/*　下層メインビジュアル
---------------------------------------------------------*/

.l-mainv{
  position: relative;
  z-index: -1;
  margin-bottom: -91px;
}

.l-mainv_ttl{
    position: absolute;
    z-index: 5;
    top: 16vw;
    left: 8vw;
    color: #fff;
}
.l-mainv_ttl_ja{
    font-size: 32px;
    font-size: 1.67vw;
    display: block;
    margin-bottom: 1vw;
    font-weight: 400;
    overflow: hidden;
}
.l-mainv_ttl_ja span{
    display: inline-block;
    transform: translate(0px, 100%);
    transition: transform 0.8s var(--easing-transform);
    transition-delay: 0.2s;
}
.body-view .l-mainv_ttl_ja span{
  transform: translate(0px, 0%);
}

.l-mainv_ttl_en{
    font-size: 130px;
    font-size: 6.77vw;
    display: block;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0.07em;
    overflow: hidden;
}
.l-mainv_ttl_en span{
    display: inline-block;
    transform: translate(0px, 100%);
    transition: transform 0.8s var(--easing-transform);
}
.body-view .l-mainv_ttl_en span{
  transform: translate(0px, 0%);
}

.l-mainv_bg{
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
}

.l-mainv_img{
  position: absolute;
  z-index: 5;
  width: 45%;
  left: 49.4%;
  top: 32%;
  overflow: hidden;
  border-radius: 10px;
}
.l-mainv_img img{
    transition: opacity 1.2s cubic-bezier(0.26, 0.06, 0, 1), transform 1.2s cubic-bezier(0.26, 0.06, 0, 1);
    transform: scale(1.3);
}

.body-view .l-mainv_img img{
    transform: scale(1);
}

.l-mainv.-image{
  margin-bottom: -13px;
}

.l-mainv.-kikyuu{
  margin-bottom: 49px;
}


.l-mainv_ttl2{
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 25%;
    left: 9.2%;
}
.l-mainv_ttl2_text1{
    display: block;
    font-size: 64px;
    font-size: 3.33vw;
}
.l-mainv_ttl2_text2{
    display: block;
    font-size: 20px;
    margin-top: 1vw;
}

.l-mainv_kikyu{
    position: absolute;
    z-index: 1;
    right: 8%;
    bottom: 6%;
    width: 15.7%;
    display: block;
}
.l-mainv_kikyu_inner{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items:center;
}
.l-mainv_kikyu_prof{
    position: absolute;
    z-index: 1;
    /* right: 0; */
    /* bottom: 0; */
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}
.l-mainv_kikyu_prof_post{
    font-size: 20px;
    font-size: 1.05vw;
    display: block;
}
.l-mainv_kikyu_prof_name{
    display: block;
    font-size: 34px;
    font-size: 1.8vw;
}

/* sp */
@media screen and (max-width: 767px) {
  .l-mainv{
    overflow: hidden;
    margin-bottom: -6rem;
}
  .l-mainv_ttl{
    top: 9rem;
    left: 8vw;
}
  .l-mainv_ttl_ja{
    font-size: 1.2rem;
}
  .l-mainv_ttl_ja span{}
  .l-mainv_ttl_en{
    font-size: 4rem;
}
  .l-mainv_ttl_en span{}
  .l-mainv_bg{
    margin: 0 -23%;
    width: auto;
}
  .l-mainv_img{
    width: 54%;
    left: 38.4%;
    top: auto;
    bottom: 0;
}

  .l-mainv.-image{
    margin-bottom: 2rem;
  }
  .l-mainv.-kikyuu{
    margin-bottom: 1rem;
}

  .l-mainv_ttl2{}
  .l-mainv_ttl2_text1{
    font-size: 4.33vw;
}
  .l-mainv_ttl2_text2{
    font-size: 3vw;
}
  .l-mainv_kikyu{
    right: 8%;
    bottom: 5%;
    width: 28.7%;
}
  .l-mainv_kikyu_inner{}
  .l-mainv_kikyu_prof{}
  .l-mainv_kikyu_prof_post{
    font-size: 2.4vw;
}
  .l-mainv_kikyu_prof_name{
    font-size: 3.8vw;
}
    
}


/*　サイドナビ
---------------------------------------------------------*/


/* sp */
@media screen and (max-width: 767px) {
}


/*　フッター
---------------------------------------------------------*/

.l-foot{
  position: relative;
  z-index: 5;
  background: var(--color-blue2);
  color: #fff;
}
.l-foot1{
}
.l-foot1 a{
  color: #fff;
}
.l-foot1_inner{
  display: flex;
  align-items:flex-start;
  justify-content:space-between;
  padding: 141px 4% 0;
  padding: 7.4vw 4% 0;
  position: relative;
  z-index: 1;
}
.l-foot1_head{
}
.l-foot1_logo{
  display: flex;
  align-items:center;
}
.l-foot1_logo_img{
    width: 117px;
}
.l-foot1_logo_name{
  font-size: 28px;
  line-height: 1.2;
  font-weight: 300;
  margin-left: 33px;
}
.l-foot1_addr{
    font-size: 15px;
    margin-top: 66px;
    line-height: 1.8;
}
.l-foot1_main{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 26px 28px;
}
.l-foot1_box{
    line-height: 1.6;
}
.l-foot1_box_ttl{
    font-size: 16px;
    margin-bottom: 11px;
    font-weight: 400;
}
.l-foot1_box_ttl span{
    --line-color: #fff;
}
.l-foot1_box_list{}
.l-foot1_box_list li{
    padding: 0 0 0 34px;
    position: relative;
    z-index: 1;
}
.l-foot1_box_list li:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: #fff;
  width: 8px;
  height: 1px;
  top: 14px;
  left: 18px;
}
.l-foot1_box_list a{
    font-size: 14px;
}
.l-foot1_box_list span{
    --line-color: #fff;
}
.l-foot_addr{
    text-align: center;
    color: #b7bcbe;
    font-size: 11px;
    margin-top: 65px;
    padding-bottom: 80px;
}
.l-pagetop{
  position: absolute;
  z-index: 1;
  background: var(--color-blue);
  top: 0;
  right: 4%;
  width: 7rem;
  height: 7rem;
  border-radius: 100px;
  overflow: hidden;
  text-indent: -500px;
  transform: translate(0px, -50%);
}

.l-pagetop:before{
  content: '';
  position: absolute;
  top: .5rem;
  bottom: 0;
  right: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}



/* hover */

@media (hover: hover) and (pointer: fine) {



}



@media screen and (max-width: 1150px) {
  .l-foot1_main{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 950px) {
  .l-foot1_main{
    grid-template-columns: 1fr 1fr;
  }
}





/* sp */
@media screen and (max-width: 767px) {

  .l-foot{}
  .l-foot1{}
  .l-foot1 a{}
  .l-foot1_inner{
    display: block;
    padding: 18.4vw 0 0;
}
  .l-foot1_head{}
  .l-foot1_logo{}
  .l-foot1_logo_img{
    width: 7rem;
}
  .l-foot1_logo_name{
    font-size: 1.7rem;
    margin-left: 2rem;
}
  .l-foot1_addr{
    font-size: 1.2rem;
    margin-top: 2rem;
}
  .l-foot1_main{
    margin-top: 4rem;
}
  .l-foot1_box{}
  .l-foot1_box_ttl{
    font-size: 1.4rem;
}
  .l-foot1_box_ttl span{}
  .l-foot1_box_list{}
  .l-foot1_box_list li{}
  .l-foot1_box_list li:before{
    width: .8rem;
    top: 1.1rem;
    left: 1.7rem;
}
  .l-foot1_box_list a{
    font-size: 1.2rem;
}
  .l-foot1_box_list span{}
  .l-foot_addr{
    font-size: 1rem;
    margin-top: 3rem;
    padding-bottom: 4rem;
}
  .l-pagetop{
    width: 3.5rem;
    height: 3.5rem;
    right: 0;
}
  .l-pagetop:before{
    width: 0.6rem;
    height: 0.6rem;
    border-width: 1px;
    top: .25rem;
}

  
}




/*---------------------------------------------------------
  表示非表示
---------------------------------------------------------*/

html body .sp-block,html body .sp-inline,html body .sp-inlineB,html body .sp-flex{
  display: none;
}

@media only screen and (max-width: 767px) {

  html body .sp-none{
    display: none;
  }
  html body .sp-block{
    display: block;
  }  
  html body .sp-flex {
    display: flex;
  }  
  html body .sp-inline {
    display: inline;
  }
  html body .sp-inlineB {
    display: inline-block;
  }  
  html body .sp-brNone br{
    display: none;
  }


}



.editor blockquote > *:first-child,
.editor > *:first-child{
  margin-top: 0 !important;
}

.editor blockquote > *:last-child,
.editor > *:last-child{
  margin-bottom: 0 !important;
}

.editor a{
    text-decoration: underline;
    color: var(--color-blue);
}

.editor a[target="_blank"]:after{
  content: "";
  z-index: 10;
  position: relative;
  background:  url(../img/common/icon_blank.svg) 50% 50% no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 1px;
  right: 0;
  margin: 0 5px 0 3px;
  display: inline-block;
  /* border-radius: 100px; */
}
.editor a[href$=".pdf"]{text-decoration: none;color: var(--color-black);}

.editor a[href$=".pdf"]:after{
  content: "PDF";
  background: var(--color-blue);
  color: #fff;
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 1;
  padding: 3px 9px;
  top: 0;
}
.editor a[href$=".pdf"]:before{
  content: '';
  display: inline-block;
  position: relative;
  top: -1px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid #1d6eb7;
  border-right: 2px solid #1d6eb7;
  transform: rotate(45deg);
  margin-right: 10px;
}

.editor p{}
.editor p + p{
  margin-top: 20px;
}

.editor p:after {
    display: block;
    content: "";
    clear: both;
}



.editor > div,
.editor .c-tableset{
  margin-top: 74px;
  margin-bottom: 74px;
}
.editor .c-list1{
  margin-top: 40px;
  margin-bottom: 40px;
}




/* hover --------------------------------------- */


@media (hover: hover) and (pointer: fine) {
  .editor a:hover{
    text-decoration: none; 
  }

  .editor a[href$=".pdf"]:hover{
    text-decoration: underline;    
  }


}


/* sp --------------------------------------- */

@media screen and (max-width: 767px) {



  .editor{
}


  .editor a{}

  .editor a[target="_blank"]:after{
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    top: 0.1rem;
    margin: 0 0.5rem 0 0.3rem;
  }
  .editor a[href$=".pdf"]{}

  .editor a[href$=".pdf"]:after{
    font-size: 1.3rem;
    padding: 3px 9px;
    width: auto;
    height: auto;
  }
  .editor a[href$=".pdf"]:before{
    top: -0.1rem;
    bottom: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 1rem;
  }

  .editor p{}
  .editor p + p{
    margin-top: 2rem;
  }


  .editor > div,  
  .editor .c-tableset{
     margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .editor .c-list1{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }



}


/*---------------------------------------------------------
  印刷設定
---------------------------------------------------------*/

@media print{

	:root {
		--font-family-main: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
		--font-family-en: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	}

	body{
		width:1100px;
	}


}




