/*
Theme Name : kandj
*/
@charset "utf-8";
/* CSS Document */

@font-face{
	font-family: 'Noto Sans JP';
	font-style:normal;
	font-weight: 400;
	src:
	local("Noto Sans CJK JP"),	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
	
}

html{
	font-size:87.5% !important;/*16px×62.5％＝10px*/
    
}
body{
	color: #000;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
/*    font-family:'Montserrat', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-size: 1.4rem;
	font-feature-settings: "palt";
	letter-spacing: 0.055em;
    text-align: justify;
    text-justify: inter-ideograph;
    
    
}
.inner{
    overflow: hidden;
}
p{
    color: #000;
    line-height: 1.6;
    letter-spacing: 0.08em;
}
p > video {
  display: block;
}

p:has(> video) {
  margin: 0;
}

a{
    color: #003c83;
    transition: 0.3s;
        font-weight: bold;
}
a:hover{
    opacity: 0.8;
}
.d-none{
    display: none;
}
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.left{
    text-align: left;
}
.flex{
    display: flex;
    gap:15px;
    margin-top: 10px;
}
.button1_wrap{
    text-align: center;
}
.button1 {
    background: #0094c8;
    padding: 10px 50px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin-top: 40px;
}
.button2{
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    color: #0094c8;
    float: right;
}


.widget--sticky {
  position: sticky;
  top: 100px; /* スクロール時にビューポートの20px位置に達すると固定 */
}


/*スマホでは消す*/
.pc-dN{
	display:none!important;
}
.btn-trigger{
	display:none!important;
}
/*書体明朝に*/
.font-min{
    font-family:'游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

/*アンカーリンク位置調整*/
a.anchorlink {height: 1px;
display: block;
padding-top: 90px;
margin-top: -90px;
}

hr.style45{
	border-top: 1px solid #003c83;
    margin: 20px 0;
    transform: rotate(-45deg);
    width: 300px;
}
hr.style20{
	border-top: 1px solid #0094c8;
    margin: 20px 0;
}
hr.style10{
	border-top: 1px solid #0094c8;
    margin: 10px 0;
}


p.indent {
    text-indent: -0.7em;
    padding-left: 1em;
}
.spacer40{
    margin-top: 40px;
}

@media only screen and ( max-width : 768px ) {
    hr.style45{
            margin-bottom: -10px;
    margin-left: -150px;
    }
}

/* ---------------------------------------------------------------------------------------------
　   HEADER
--------------------------------------------------------------------------------------------- */
h1{
    text-align: center;
}
h1 a{
    font-family: 'Noto Sans JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 0;
    align-items: center;
    display: flex;
    gap: 5px;
}
h1 span {
  font-size: 15px;
}

.h4hed {
    font-size: 18px;
    font-weight: 500;
}
.h5hed {
    color: #0094c8;
    font-size: 16px;
    font-weight: 500;
        margin-top: 30px;
        margin-bottom: 10px;
}

#header {
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  border-bottom: solid 1px #003c83;
  display: flex;
  align-items: center;
  padding-left: 50px;
  box-sizing: border-box;
  transition: background .5s;
  transform: translateY(-100%);
  opacity: 0;

  /* アニメーションを適用 */
  animation: slideInHeader 1s ease forwards;
}

@keyframes slideInHeader {
  to {
    transform: translateX(0); /* 元の位置に戻す */
    opacity: 1;              /* フェードイン */
  }
}

.fix_menu{
    background: rgba(209, 235, 245, 0.7);
}
.fixedmenu{
    background: rgba(255, 255, 255, 0.9);
  }
#header .container{
/*    margin-top: 15px;*/
}


.nav-pc li{
    flex-grow: 1;
    text-align: center;
        padding: 0 15px;
    font-weight: 700;
}
.nav-pc li span{
    font-size: 12px;
    font-weight: 400;
    text-transform:uppercase;
}


.nav-pc li.mail a {
    color: #fff;
    background: rgba(0, 60, 131, 1.0);
    mix-blend-mode: multiply; /* ← 要素と背面を乗算 */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-pc li.mail a::before {
    content: "";
    display: inline-block;  
    background-image: url('images/mail.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 35px;
    height: 30px;
}

.nav-pc li.mail{
    border-left: 1px solid #003c83;
}


  .nav-pc {
    position: relative;
    display: flex;
  align-items: center;
  }




.headtel{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-right: 10px;
    color: #008181;
}
.headtel a{
    color: #008181;
}
.headtel span{
    font-size: 12px;
    color: #000;
}

@media only screen and ( max-width : 1236px ) {
    
        /*タブレットでは消す*/
    .tb-dN{
	display:block!important;
}

    .nav-pc li{
            padding: 0 10px;
    }
    .headtel span{
            font-size: 9px;
    }
    
    .nav-pc li a {
            font-size: 1vw;
}
    h1 span{
            font-size: 1vw;
    }
    .nav-pc li span{
        font-size: 1vw;
    }
    .scroll-infinity__item {
    width: calc(100vw / 4);
}
    
}
@media only screen and ( max-width : 950px ) {
    h1 a{
        font-size: 1.6vw;

    }
    
}
  @media only screen and ( max-width : 768px ) {
      /*スマホでは消す*/
    .sp-dN{
	display:none;
}
          .pc-dN{
        display:block!important;
    }
      h1 span{
              font-size: 11px;
              margin-left: 7px
      }
      h1 a{
        font-size:min(4.5vw,18px);

    }
      
      
      
}



#h_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 50px 0px 50px;
     position: absolute; 
    top: 15px;
    right: 0;
}


@media only screen and ( max-width : 768px ) {
    #header .container {
     margin-top: 0px; 
}
  #header {
    padding: 10px 0 10px 20px;
    height: 51px;
  }
    #h_top{
    margin: 0px 20px;
}   

    
}


/* ---------------------------------------------------------------------------------------------
　   ハンバーガーメニュー
--------------------------------------------------------------------------------------------- */

.btn-gNav {
    position: fixed;
    top: 13px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    
}

.btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #003c83;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.btn-gNav span:nth-child(4) {
    position: absolute;
    width: 100px;
    height: inherit;
    background: inherit;
    border-radius: inherit;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    font-size: 10px;
    bottom: -23px;
    right: -65px;
    font-weight: bold;
    color: #003c83;
}

.btn-gNav span:nth-child(1) {
    top: 0;
}

.btn-gNav span:nth-child(2) {
    top: 10px;
}

.btn-gNav span:nth-child(3) {
    top: 20px;
}

.btn-gNav.open span:nth-child(1) {
    background: #003c83;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn-gNav.open span:nth-child(2),
.btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #003c83;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}




.btn-gNav {
    display: none;
}

@media screen and (max-width: 768px) {
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 5;
        padding-top: 63px;
        transition: .3s;
        margin-top: 0px;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        flex-direction: column;
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #003c83 1px solid;
    }
    .gNav .gNav-menu li a{
        display: flex;
        align-items: center;
        color: #003c83;
        justify-content: flex-start;
        text-align: left;
        line-height: 1.4;
    }
    .gNav .gNav-menu li.mail a{
        color: #fff;
    }
    .nav-pc li.mail{
        border-left: 0px solid #003c83;
    }
    .gNav .gNav-menu li .yajirushi{
        color: #003c83;
        margin-left: 10px;
    }
    .nav-pc li a{
        font-size: 14px;
    }


}
    

/* ---------------------------------------------------------------------------------------------
　   HEADER
--------------------------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------------------------------
　   トップ
--------------------------------------------------------------------------------------------- */

.main{
    
}
.contents{
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
@media only screen and ( max-width : 768px ) {
    .contents{
            padding: 0 20px;
                position: relative;
    }
    
}

.clip-container {
    width: 100%;
    max-height: 600px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
video {
  width: 100%;
  right: 0;
  top: 0;
  z-index: 1;
}
.pattern {
  width: 100%;
  height: 100%;
mix-blend-mode: multiply;
        background: #d1ebf5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.line01 {
    position: absolute;
    top: 400px;
    width: 100%;

    clip-path: inset(100% 0 0 0);
    animation: revealUp 2s ease forwards;
}

@keyframes revealUp {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.line02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36vw;
  max-width: 400px;
  min-width: 300px;
  z-index: -1;
  clip-path: inset(0 0 100% 0);
  /* animation指定は外す */
}
/* アニメーションはanimateクラス付与時のみ */
.line02.animate {
  animation: revealDown2 2s ease forwards;
}
@keyframes revealDown2 {
  to { clip-path: inset(0 0 0 0); }
}



.line05 {
    position: absolute;
    top: 0;
    left: -20%;
    width: 100%;
    clip-path: inset(100% 0 0 0);
}
.line05.animate {
  animation: revealUp 2s ease forwards;
}
@keyframes revealUp {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.line06 {
    position: absolute;
    top: -35px;
    width: 100%;
    clip-path: inset(100% 0 0 0);
}
.line06.animate {
  animation: revealUp 2s ease forwards;
}

@keyframes revealUp {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.line07 {
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 100%;
    clip-path: inset(100% 0 0 0);
}
.line07.animate {
  animation: revealUp 2s ease forwards;
}

@keyframes revealUp {
    to {
        clip-path: inset(0 0 0 0);
    }
}



/*文字左から*/

.text_effect_wrap{
    position: absolute;
        bottom: 80px;
    right: 182px;
}
.text_effect {  
    font-family: "Roboto Condensed", sans-serif;
    color: #fff;
/*    mix-blend-mode: multiply;*/
    font-size:min(6.3vw,69px);
    letter-spacing: 2px;
    line-height: 0;
    text-align: right;
    
    width: 100%;
    margin: 0;
    z-index: 3;
    position: relative;
}

.text_effect .letter {
    display: inline-block;
    line-height: 1em;
    opacity: 0;
}

.text_effect .letters1 {
    font-size: 15px !important;
            margin-bottom: 10px;
        display: block;
}

@media only screen and ( max-width : 768px ) {
    .line01{
            top: 130px;
    }
    .line02{
            z-index: 0;
        top: -120px;
    }
    .line05{
            top: -50px;
    left: -20%;
    width: 200%;
    }
    .line06{
        top: 0px;
    left: -200px;
    width: 400%;
    }
    .line07{
            bottom: 70px;
    left: -10%;
    width: 300%;
    }
    
    
    .text_effect_wrap{
            right: 20px;
    bottom: 37px;
    }
    .text_effect .letters1{
        font-size: 12px !important;
        
    }
    
}




.h2hed{
    margin-top: 50px;
}
.h2hed span{
    color: #0094c8;
    font-size: 23px;
    padding: 10px 0;
}
.h2hed span.h2hed02{
    color: #fff;
}
.h2hed span::before {
    content:"●";
    font-size: 35px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
}
.h2hed span.h2hed01::after {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    content:"Customs clearance";
    font-size: 55px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
    color: rgba(0, 148, 200, 0.2);
    margin-left: -20px;
    letter-spacing: -0.03em;
}

.h2hed span.h2hed02::after {
    content:"News";
    color: rgba(250, 250, 250, 0.2);
}
.h2hed span.h2hed03::after {
    content:"Import";
}
.h2hed span.h2hed04::after {
    content:"Export";
}
.h2hed span.h2hed05::after {
    content:"Ship agent";
}
.h2hed span.h2hed06::after {
    content:"Business Request";
}
.h2hed span.h2hed07::after {
    content:"Our Services";
}
.h2hed span.h2hed08::after {
    content:"Company";
}
.h2hed span.h2hed09::after {
    content:"To peers";
}
.h2hed span.h2hed10::after {
    content:"Privacy policy";
}
.h2hed span.h2hed11::after {
    content:"Contact";
}
.h2hed span.h2hed12::after {
    content:"News";
}

.catch{
    text-align: right;
    color: #0094c8;
    font-size: 25px;
    padding: 50px 0 0;
}

.h3hed{
    margin: 15px 0;
    color: #003c83;
    font-size: 22px;
}

@media only screen and ( max-width : 768px ) {
    .h2hed{
            margin-top: 30px;
    }
    .h2hed span{
            display: block;
    }
    .h2hed span::before{
            font-size: 28px;
    }

    .h2hed span.h2hed01::after {
            display: block;     /* ブロックにして強制改行 */
            margin-left: 0;     /* 左のズレをリセット */
            font-size: 28px;    /* スマホ向けに少し小さく */
            margin-top: -5px;    /* 上に余白を追加 */
    }
    .catch{
            font-size: 15px;
        font-weight: bold;
            text-align: left;
    }
    
}




/* ---------------------------------------------------------------------------------------------
　   NEWS
--------------------------------------------------------------------------------------------- */
.news{
/*    background: #5cbb59;*/
    background: #0094c8;
    padding: 30px 0 80px;
    position: relative;
}


.btn{
  color: #5cbb59;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  background: #FFF;
  margin: auto;
  border:1px solid #5cbb59;
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 100px;
  text-decoration: none;
    padding: 15px 40px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.btn:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 20px;
  transition: all 0.2s;
}

.btn:hover:after {
  right: 15px;
}
.btn.active {
  background: #22b173;
  color: #fff;
}

.newslist{
/*    width: 37%;*/

}
.news_txt{
    
}

.msr_newslist03 {
        margin-bottom: 30px;
        margin-top: 30px;
}
.msr_newslist03 li {
  font-size: 14px;
  border-bottom: solid 1px #fff;
    margin-bottom: 10px;
}

.msr_newslist03 li a {
  box-sizing: border-box;
  color: #fff;
  display: inline-table;
  padding: 20px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 100%;
}
.msr_newslist03 li a:hover {
  opacity: 0.5;
}
.msr_newslist03 li div {
  display: table-cell;
  width: 110px;
}
.msr_newslist03 li p {
  display: table-cell;
  padding-left: 0px;
  vertical-align: middle;
    color: #fff;
        line-height: 1.4;
}

/* 時間の設定 */
.msr_newslist03 li time,.news_page time {
  color: #0094c8;
    display: block;
    vertical-align: top;
    line-height: 1.8;
    background: #d1ebf5;
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 20px;
        margin-right: 20px;
    text-align: center;
    
}

@media only screen and ( max-width : 768px ) {
    .msr_newslist03{
            margin-bottom: 0px;
    margin-top: 0px;
    }
    .msr_newslist03 li a{
            display: grid;
    }
    .msr_newslist03 li p{
            margin-top: 10px;
    }
}
/* ---------------------------------------------------------------------------------------------
　   お知らせ
--------------------------------------------------------------------------------------------- */
.contents_page .newssingle ul {
    list-style: none;
    border-left: solid 0px #000;
    padding-right: 0px;
    margin: 15px 15px 30px 15px;
}
.contents_page .newssingle li {
     text-indent: 0em; 
     padding-left: 0em; 
     line-height: 0; 
     margin-left: 0px;
    list-style-type: none;
}
.contents_page .newssingle li::before {
         content: '';
}
.contents_page .newssingle time{
    color: #fff;
    display: inline-block;
    line-height: 1.8;
    background: #69ba65;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
        margin-bottom: 10px;
}
.contents_page .newssingle .title{
    font-size: 18px;
}
.contents_page .newssingle hr.style1 {
    margin: 13px 0;
}

/*個別*/
.newssingle .msr_newslist03 li p{
    display: block;
    padding-left: 0px;
    vertical-align: middle;
    color: #000;
    line-height: 1.4;
    margin-top: 20px;
    font-size: 18px;
}
/*一覧*/
.ichiran .msr_newslist03 li p{
        color: #000;
}
.ichiran .msr_newslist03 li{
        border-bottom: solid 1px #000;
}

@media only screen and ( max-width : 768px ) {
    .newssingle{
        margin-top: 40px;
    }
}


/*
 ---------------------------------------------------------------------------------------------
　   トップのサイト説明
--------------------------------------------------------------------------------------------- 
*/

.submain {
  background:#d1ebf5;
    padding-bottom: 100px;
}
.submain02{
    padding: 40px 0 0px;
    display: flex;
    gap:50px;
    align-items: flex-start;
    
}
.submain02 img{
    width: 330px;
    margin: 0 auto 30px;
    display: block;
}
.submain02 .title{
    font-size: 20px;
    font-weight: 500;
    color: #0094c8;
    margin-bottom: 15px;
}
.submain02 .txt{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.8;
}

.submain03{
    padding: 50px 0 0px;
    display: flex;
    align-items: center;
        
}

.submain03 .title{
    font-size: 23px;
    font-weight: 700;
    color: #003c83;
    width: 400px;
    margin-right: -60px;
}
.submain03 .txt{
    float: left;
    width: 100px;
    height: 100px;
    clip-path:     polygon(0px 0px, 100px 0px, 0px 100px);
    shape-outside: polygon(0px 0px, 100px 0px, 0px 100px);
}
.submain03 .shape-polygon{
    line-height: 1.5;
    letter-spacing: 0.15em;
        margin-left: -60px;
}

@media only screen and ( max-width : 768px ) {
    .submain {
    padding-bottom: 20px;
}
    .submain02{
            display: block;
            padding: 10px 0 0px;
    }
    .submain02 .txt{
            margin-bottom: 20px;
    }
    .submain03{
        display: block;
    }
    .submain03 .shape-polygon{
            margin-left: 0px;
    }
    .submain03 .txt{
            height: auto;
    }
    .submain03 .title{
            width: 100%;
    margin-right: 0px;
    }
    
    }


/* ---------------------------------------------------------------------------------------------
　   フッター
--------------------------------------------------------------------------------------------- */

/*TOPへ戻る*/
#page_top_btn{
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 200;
	display: none;
}

#page_top_btn a{
	font-size:25px;
	font-weight:500;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 100%;
	border: solid #FFF 3px;
	height: 50px;
	width: 50px;
	background-color: #003c83;
	color: #FFF;
}

#page_top_btn a span{
	display:block;
	transform: scaleX(1.5);
    margin-bottom: 5px;
}


#footer{
	background-color:#0094c8;
    padding: 20px 0;
    position: relative;
    margin-top: 60px;
}
#footer .footer p{
	font-size:14px;
    text-align: center;
    color: #fff;
}
#footer .footer{
    padding: 40px 0;
}

#footer .footer p:first-of-type{
    font-size: 18px;
    margin: 20px 0;
}

#footer .footerobi{
    padding: 40px 0;
    text-align: center;
}
#footer .footerobi .copy{
    color:#fff;
        font-size: 11px;
}

#footer .link{
    display: flex;
    gap:7px;
    flex-wrap: wrap;
    margin: 50px 0 20px;
}
#footer .link a{
    width: 16%;
}
#footer .link img{
    width: 100%;
}

@media screen and (max-width: 768px) {
    #footer .link{
        justify-content: center;
            position: relative;
            margin: 20px 0 20px;
    }
    #footer .link a{
        width: 45%;
    }
    #footer .footerobi{
            padding: 10px 0;
    }
    #footer .footer{
            padding: 20px 0;
    }
    
}

/* ---------------------------------------------------------------------------------------------
　   輸入の流れ
--------------------------------------------------------------------------------------------- */
/* PC（横並び・横線） */
.timeline-003 {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 50px 0;
}
.timeline-003 li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #000;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    font-weight: bold;
}
.timeline-003 li span {
    font-weight: normal;
    display: block;
    margin-top: 9px;
}
.timeline-003 li span.above {
    font-weight: bold;
    position: absolute;
    top: -50px;
    color: #003c83 !important;
}
.timeline-003 li span.under {
    font-weight: bold;
    position: absolute;
    top: 67px;
    left: -48%;
    font-weight: normal !important;
}
.timeline-003 li::before {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
    content: '';
    border-radius: 50%;
    background-color: #0094c8;
}
.timeline-003 li.highlight::before {
    background-color: #003c83;
}
.timeline-003 li:not(:last-child)::after {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: -1;
    width: 100%;  /* 横方向に半分 */
    height: 2px;
    background-color: #98d4e2;
    content: '';
}
.timeline-003 a{
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .timeline-003 {
        flex-direction: column;   /* 縦並び */
        align-items: flex-start;
            margin: 10px 0 15px 40px;
    }
    .timeline-003 li {
        flex-direction: row;      /* アイコンとテキスト横並び */
        align-items: center;
        text-align: left;
        margin-bottom: 30px;
    }
    .timeline-003 li::before {
        margin-bottom: 0;
        margin-right: 12px;       /* テキストとの間隔 */
    }
    .timeline-003 li:not(:last-child)::after {
        top: 30px;                /* 丸の中央あたりから出す */
        left: 15px;               /* 丸の中央位置 */
        width: 2px;               /* 縦線に変更 */
        height: calc(100% + 30px);/* 次の要素まで伸ばす */
    }
    .timeline-003 span{
        margin-left: 20px;
    }
    
    .timeline-003 li span.above{
        margin-left: 0px;
        left: -36px;
        writing-mode: vertical-rl;
        top: -73px;
        height: 200px;
    }
    .timeline-003 li span.under{
        top: -50px;
        left: 124%;
        width: 200px;
    }
}



.nagare {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* 上段のグループ */
.nagare-top {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* 下の説明は幅100%で改行 */
.nagare .desc {
    flex-basis: 100%;
    margin-top: 10px;
}



.nagare .hako{
    display: flex;
    border: 1px solid #0094c8;
    padding: 10px 20px;
    width: 100px;
    text-align: center;
        display: block;
    color: #0094c8;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 1px;
  margin: 29px 0;
  border-radius: 9999px;
  background-color: #0094c8;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #0094c8;
  transform-origin: calc(100% - 0px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.kakomi{
    padding: 15px;
    border: 1px solid #0094c8;
    margin: 20px 0;
}
.kakomi p:first-of-type{
    color: #0094c8;
}

.listwrap{
    display: flex;
    gap:30px;
}
.listwrap p{
    color: #003c83;
}
    
.list p:first-of-type{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 7px;
}


@media screen and (max-width: 768px) {
    .nagare {
        flex-direction: column; /* 縦並びベース */
        align-items: flex-start;
    }

    .nagare-top {
        flex-direction: row; /* 上段だけ横並び */
    }
    .arrow {
  width: 50px;
}
    
    .nagare .hako{
        width: 77px;
    }
    
    .listwrap{
            display: block;
    }
    .listwrap .list{
            margin-bottom: 20px;
    }
    
}



/* ---------------------------------------------------------------------------------------------
　   船舶代理店業
--------------------------------------------------------------------------------------------- */
.dairi{
    padding-top: 40px;
    margin-top: 60px;
    position: relative;
}
.dairi .listwrap{
    padding: 30px;
    background: #fff;
    display: inline-flex;
}
.dairi .listwrap0{
    display: table;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .dairi .listwrap{
            display: block;
    margin-top: -20px;
    }
    
}
/* ---------------------------------------------------------------------------------------------
　   私たちのサービス
--------------------------------------------------------------------------------------------- */
.our .ourlist:nth-of-type(2){
    font-size: 18px;
    margin-top: 30px;
}
.our .ourlist{
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}
.our .ourlist:nth-of-type(4){
    margin-bottom: 30px;
}
.our table{
    margin: 20px 0:
    border-collapse:  collapse;
}
.our table th,.our table td{
    padding: 20px 30px;
    border: solid 1px;
        vertical-align: middle;
    line-height: 1.2;
}
.our table th{
        width: 85px;
    }

@media only screen and ( max-width : 768px ) {
    .our table th{
        width: 80px;
    }
    .our table th, .our table td{
            padding: 20px 10px;
    }
}

/* ---------------------------------------------------------------------------------------------
　   会社概要
--------------------------------------------------------------------------------------------- */
.company dl {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 5rem;
}
.company dt {
    width: 40%;
    margin: 0;
    border-bottom: 1px solid #000;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.2em 1em 1em 1em;
    vertical-align: middle;
    align-items: center;
    box-sizing: border-box;
}
.company .enkaku dt {
    width: 25%;
}
.company dd {
    width: 60%;
    margin: 0;
    padding: 1em 1em 1em 1em;
    border-bottom: 1px solid #000;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
    box-sizing: border-box;
}
.company .enkaku dd {
    width: 75%;
}
.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    margin-bottom: 60px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and ( max-width : 768px ) {
    .company dt{
        width: 100%;
        border-bottom: 0px solid #000;
            padding: 1.2em 1em 0em 1em;
    }
    .company dd{
        width: 100%;
    }
    .company dl{
        display: block;
    }
    .company .enkaku dt{
        width: 100%;
            border-bottom: 0px solid #000;
            padding: 1.2em 1em 0em 1em;
    }
    .company .enkaku dd{
        width: 100%;
    }
    
}

/* ---------------------------------------------------------------------------------------------
　   個人情報保護方針とお問い合わせ
--------------------------------------------------------------------------------------------- */
.pages{
    position: relative;
    width:100%;
    height: 100%;
    text-align: center;
}
.pages .color{
    position: absolute;
        top: 0;
    width:100%;
    height: 100%;
    background: rgba(152, 212, 226, 0.6);
    mix-blend-mode: hard-light;
}
.pages img{
    width:100%;
    height: 200px;
    object-fit: cover;
}

.pages1{
        background: #d1ebf5;
    padding-bottom: 60px;
        padding-top: 20px;
}
@media only screen and ( max-width : 768px ) {
    .pages1{
            padding-bottom: 20px;
    }
}

/*フォーム*/
.cf7__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    margin-top: 60px !important;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
/*  padding-top: 15px;*/
}
.cf7__list dt p {
      background: #d1ebf5;
    padding: 20px 30px;
    vertical-align: middle;
    align-items: center;
    display: block;
    margin-right: 40px;
    text-align: center;
}

.cf7__list dd {
  width: 65%;
}
.cf7__list div {
  display: block;
    margin-top: 15px;
}
.cf7__list dd.yuubin p {
  display: flex;
    align-items: center;
}
.cf7__list dd.yuubin p label {
  width: 100px;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  color: #ff0000;
      font-size: 10px;
    margin-left: 10px;
}


.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea,
.cf7__list dd select{
    width: 100%;
    padding: 25px 20px;
    background: #F4F4F4;
    box-sizing: border-box;
    border: 1px solid #d1ebf5;
}
.cf7__list .w80 input[type="text"]{
        width: 80px;
    }

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
/*    display: block;*/
  width: 15%;
  margin: 0;
}
.cf7__list dd.tateradio .wpcf7-list-item {
    display: block;
    width: auto;
}
.cf7__list dd.tateradio .wpcf7-list-item:nth-child(n + 2) {
    margin-top: 5px;
}
.houkoku .cf7__list dd .wpcf7-list-item {
  display: contents;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    margin-bottom: 0;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  padding-left: 72px;
  text-align: center;
}

.cf7__button input {
  width: 260px;
  height: 60px;
  background: #000;
  color: #fff;
  transition: opacity .6s;
}

.cf7__button input:hover {
  opacity: .6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
    display: none!important;
}
.cf7__list span.note{
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.2;
    display: block;
        margin-right: 10px;
    position: absolute;
    top: 28px;
}

#content .note01{
    padding: 30px 50px;
    margin: 10px 0 30px;
    background: #F2F2F2;
    
}
.cf7__list #title-name{
    width: 100%;
    box-sizing: border-box;
}
.wpcf7-not-valid-tip {
    position: absolute !important;
/*    width: 150px !important;*/
        display: contents;
}


.cf7__list span.cf7__required,
.cf7__list span.cf7__optional{
    width: 27px;
    height: 22px;
}

@media screen and (max-width: 767px) {

  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  .cf7__button input[type="submit"] {
    width: 180px;
    height: 56px;
  }

    .cf7__list dt p{
        display: block;
        margin-right: 0px;
}
    .cf7__list span.note{
            margin-right: 0px;
        position: relative;
    top: 0;
    }
    
}

/*確認画面と完了画面を非表示*/
    .confirm_area,
    .thanks_area {
        display: none;
        margin-top: 30px;
    }

    /*デフォルトのサンクスメッセージを非表示*/
    .wpcf7-response-output{
        display: none;
    }

.button-wrap {
    text-align: center;
}
.button-wrap input{
    width: 260px;
    height: 60px;
    background:rgba(0,0,0,1);
    color: #fff;
    border: 0px;
    transition: .3s;
}
.button-wrap input:hover{
    background:rgba(0,0,0,0.7);
    cursor:pointer;
}
.button-wrap input:disabled{
    opacity: 0.3;
    pointer-events: none;
}
.button-wrap input[type="submit"]{
    width: 260px;
    height: 60px;
    background:rgba(93 , 114 , 197,1);
    color: #fff;
    border: 0px;
    transition: .3s;
    border-radius: 0px;
    margin-bottom: 10px;
        margin-top: 30px;
}
.button-wrap input[type="submit"]:hover{
    background:rgba(93 , 114 , 197,0.7);
}

.privacycheck{
    margin-bottom: 25px;
}
.privacycheck p:first-child{
    font-size: 19px;
    font-weight: bold;
}
.privacycheck .wpcf7-list-item{
        margin: 0 0 10px 0;
}
.privacycheck input{
        margin: 10px 5px 0px 0px;
}


/*確認画面*/
.Form-Item{
    display: flex;
    margin-top: 15px;
        align-items: center;
}
.h-adr .Form-Item{
    display: flex;
    margin-top: 15px;
        align-items: flex-start;
}
.Form-Item p:last-of-type{
/*    margin-right: 10px;*/
}


