@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/* ----------------------------- */
/* ここからトップページアニメーション関連のCSS */
/* ----------------------------- */

/* 最初に動く山2つを囲うdiv */
#logo_loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 50;
    background-color: rgba(0,0,0,0);
    animation: fadeout 1s 2s ease-out forwards;
}
/* 緑色の大きい山を囲うdiv */
#logo_loader #logo1 {
    position: absolute;
    left: -150%;
    margin: auto;
    width: 300%;
    height: 100%;
    z-index: 102;
    animation: loading1 1s 1s ease-out forwards;
}
#logo_loader #logo1 img {
    width: 100%;
    height: auto;
}
/* 黄緑色の山を囲うdiv */
#logo_loader #logo2 {
    position: absolute;
    /* right: 0;
    top: 50px; */
    margin: auto;
    width: 150%;
    height: 100%;
    z-index: 101;
    animation: loading2 1s 1s ease-out forwards;
}
#logo_loader #logo2 img {
    width: 100%;
    height: auto;
}
/* トップページの動画または写真を囲うdiv */
#port_img{
  /* margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1); */
  width: 100%;
  position: relative;
  overflow-x: hidden;
  /* z-index: -1; */
}
#port_img img{
  height: 60vh;
  /* height: 700px; */
  width: 100%;
  object-fit: cover;
}
/* KYOTO MAIZURU PORTの文字 */
#port_img #logo0_img{
  position: absolute;
  top: 0;
  left: 20%;
  object-fit: contain;
  z-index: 120;
  width: 60vw;
}
/* 船のイラスト */
#port_img #logo3_img{
  position: absolute;
  top: 0;
  left: 44%;
  object-fit: contain;
  z-index: 49;
  width: 12vw;
  animation: fadeout 1s 4.5s ease-out forwards;
}
/* 小さい黄緑の山 */
#port_img #logo4_img{
  position: absolute;
  top: -6.5%;
  /* top: -40px; */
  left: -20%;
  object-fit: contain;
  z-index: 46;
  width: 15vw;
  animation: loading4 1s 2s ease-out forwards,fadeout 1.5s 3s ease-in forwards;
}
/* 小さい緑の山 */
#port_img #logo5_img{
  position: absolute;
  top: -7.6%;
  /* top: -48px; */
  right: -20%;
  object-fit: contain;
  z-index: 47;
  width: 16vw;
  animation: loading5 1s 2s ease-out forwards,fadeout 1.5s 3s ease-in forwards;
}
#white_back{
width: 100vw;
height: 100vh;
position: fixed;
z-index: 40;
top: 0;
left: 0;
background-color: #FFF;
animation: fadeout 1.5s 3s ease-in forwards;
}
#footer{
  position: relative;
  z-index: -1;
}
/* 汎用型フェードアウトアニメーション */
@keyframes fadeout{
  from{
    opacity: 1;
  }
  to{
    opacity: 0;
    visibility: hidden
  }
}
/* 今の位置から左下に動くアニメーション */
@keyframes loading1{
  from {
    transform: translate(0px,0px);
  }
  to{
    transform: translate(-50%,0%);
  }
}
/* 今の位置から右下に動くアニメーション */
@keyframes loading2{
  from {
    transform: translate(0px,0px) scale(1,1);
  }
  to{
    transform: translate(50%,30%) scale(0.75,0.75);
  }
}
/* 左からスライドしてくるアニメーション */
@keyframes loading4{
  from {
    transform: translate(0px,0px);
  }
  to{
    transform: translate(55vw,0px);
  }
}
@keyframes loading5{
  from {
    transform: translate(0px,0px);
  }
  to{
    transform: translate(-55vw,0px);
  }
}

/* ----------------------------- */
/* トップページアニメーション関連CSSの終わり */
/* ----------------------------- */


/* ----------------------------- */
/* ここからトップページ投稿、固定ページリスト関連のCSS */
/* ----------------------------- */

.post_list{
  z-index: 30;
  position: relative;
  width: 100%;
  left: 0;
}

.pc_post_list{
  margin: 0 5%;
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.post_list .post_link{
  width: calc(100%/3);
  margin: 1% 0;
  text-decoration: none;
  color: #707070;
}

.pc_post_list .post_cont{
  margin: 3% 0;
  width: 100%;
}

.post_cont{
  margin: 3% 3%;
  padding: 5px;
  border-radius: 10px;
}

.post_cont a,.page_cont a{
  display: block;
  color: #707070;
  text-decoration: none;
}

.cont_img{
  width: 100%;
  text-align: center;
}

.cont_text{
  width: 80%;
  margin: auto;
  line-height: 1.5;
}

.cont_text .post_date{
  font-size: 14px;
}

.post_cont img{
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#pc_css .post_cont img{
  border-radius: 50%;
  width: 15vw;
  height: 15vw;
}

.page_list{
  z-index: 30;
  position: relative;
  width: 100%;
  left: 0;
}

.page_cont_flexbox{
  display: flex;
  align-items: flex-start;
}

.page_cont_flexbox .page_cont_flex{
  width: 30%;
}

.page_cont_flexbox .page_cont_flex:nth-child(odd){
  margin: 3% 1% 0 20%;
}

.page_cont_flexbox .page_cont_flex:nth-child(even){
  margin: 3% 20% 0 1%;
}

.page_cont{
  margin: 1% 20%;
  background-color: #F4F4F4;
  padding: 10px 0;
  border-radius: 10px;
}

.page_cont h4{
  font-size: 22px;
  text-align: center;
  color: #707070;
  font-weight: normal;
}

.page_cont ul{
  list-style: none;
  padding: 0;
  margin: 0 5%;
}

.page_cont ul li{
  background-color: #FFFFFF;
  margin: 16px 0;
  text-align: center;
  border-radius: 10px;
  padding: 10px 0;
}

.page_cont ul li a{
  display: block;
  text-decoration: none;
}

/* チェックボックスは非表示 */
.accordion-hidden{
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  cursor: pointer;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  color: #707070;
  position: relative;/* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: all .5s ease-out;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: all .5s ease-out;/* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  opacity: 1;
}

.accordion-hidden:checked + .accordion-open + #jogesen {
  height: 422px;
}

.accordion-hidden:checked + .accordion-open + #kanko {
  height: 288px;
}

.accordion-hidden:checked + .accordion-open + #ayumi {
  height: 288px;
}

.accordion-hidden:checked + .accordion-open + #koro {
  height: 422px;
}

.single_cont{
  padding: 10px 0;
  text-align: center;
}

.tosingle_list:after{
  font-family: 'Font Awesome 5 Free';
  content: '\f061';
  font-weight: 900;
  padding-right: 10px;
}

.tosingle_list{
  color: #559ECF;
  text-align: center;
  border-radius: 25px;
  border: solid 1px #559ECF;
  line-height: 50px;
  height: 50px;
  font-size: 18px;
  margin: 0 auto;
  width: 80%;
}

.tosingle_list a{
  color: #559ECF;
  display: inline-block;
}

/* ----------------------------- */
/*トップページ投稿、固定ページリスト関連CSSの終わり */
/* ----------------------------- */

/* ----------------------------- */
/*ここから客船情報のCSS */
/* ----------------------------- */

#ship_list{
  z-index: 30;
  position: relative;
  /* margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1); */
  left: 0;
  /* padding: 0 3%; */
}

.ship_cont{
  margin: 3% 10%;
  background-color: #F4F4F4;
  display: flex;
  padding: 5px;
  border-radius: 10px;
}

.ship_img{
  display: flex;
  width: 100%;
}

.ship_cont img{
  width: 60%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

#pc_css .ship_detail{
  margin-left: 10px;
}

.ship_detail h4{
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: normal;
}

/* ----------------------------- */
/*客船情報CSSの終わり */
/* ----------------------------- */


/* ----------------------------- */
/*ここから客船情報個別ページのCSS */
/* ----------------------------- */

#single_ship{
  z-index: 30;
  position: relative;
  left: 0;
  margin: 0 10%;
}

#single_ship img{
  width: 100%;
  height: 30vh;
  object-fit: cover;
}

#single_ship_detail{
  margin:  1% 3%;
}

#single_ship_detail h4{
  font-size: 22px;
  font-weight: lighter;
  margin-bottom: 15px;
  color: #707070;
}

#single_ship_detail ul{
  list-style: none;
  padding-left: 0;
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

#single_ship_detail ul li{
  width: 70%;
  display: table-cell;
  vertical-align: top;
  color: #707070;
  border-bottom: solid 1px #F4F4F4;
}

#single_ship_detail ul li.list_title{
  width: 30%;
}

#single_ship_detail ul li a{
  color: #559ECF;
}

/* ----------------------------- */
/*客船情報個別ページCSSの終わり */
/* ----------------------------- */

/* ----------------------------- */
/*ここから固定ページのCSS */
/* ----------------------------- */

#page_frame{
  z-index: 30;
  position: relative;
  /* margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1); */
  left: 0;
  color: #707070;
}

#page_frame .map_div{
  /* margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1); */
  margin-left: calc( ( ( 100% - 100vw ) / 2 ) + 200px );/*スクロールバーの幅を考慮（+8px）*/
	margin-right: calc( ( ( 100% - 100vw ) / 2 ) + 200px );/*スクロールバーの幅を考慮（+8px）*/
}

#page_frame .map{
  width: 100vw;
  height: 70vh;
}

.page_margin{
  margin: 0 20%;
}

.page_margin a{
  font-weight: 500;
}

.page_margin tr.tc_left{
  text-align: left;
}

.page_margin h2{
  text-align: center;
  margin-top: 50px;
  margin-bottom: 35px;
  font-size: 22px;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
}

.page_margin h3{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 20px;
  background-color: transparent;
  font-weight: 500;
  padding: 0;
  border: 0;
}

.page_margin img{
  /* width: 25%; */
  /* height: 100%; */
  /* object-fit: cover; */
  object-fit: contain;
  object-position: top;
  margin-top: 20px;
  margin-bottom: 5px;
  /* max-height: 500px; */
}

.page_margin table{
  /* border: solid white 2px; */
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  font-size: 16px;
}

.page_margin table .left{
  text-align: left;
  border-right: none;
}

.page_margin table .right{
  text-align: right;
  border-left: none;
}

.page_margin table tr{
  padding: 3px 0;
}

.page_margin table th{
  font-weight: normal;
  background-color: #49A148;
  color: #FFFFFF;
  border: solid white 2px;
}

.page_margin table td.grey{
  background-color: #CCCCCC;
  color: #FFFFFF;
}

.page_margin table td{
  background-color: #F4F4F4;
  color: #707070;
  border: solid white 2px;
}

#pc_css .page_margin .img_list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

#pc_css .page_margin .img_list div.img_list_cont{
  margin: 0 5%;
  width: 40%;
}

#pc_css .page_margin .img_list div.img_list_cont img{
  /* height: 40vh; */
  object-fit: contain;
}

#pc_css .page_margin .img_list div img,#pc_css .page_margin .img_list .video-container{
  width: 100%;
  margin: 0;
}

col.short{
  width: 20%;
}

.page_margin table td,.page_margin table th{
  padding: 3px 5px;
}

.spot li:before{
  font-family: 'Font Awesome 5 Free';
  content: '\f030';
  font-weight: 900;
  padding-right: 10px;
}

.spot li{
  color: #559ECF;
  text-align: center;
  border-radius: 25px;
  border: solid 1px #559ECF;
  line-height: 50px;
  height: 50px;
  margin-bottom: 10px;
  font-size: 16px;
}

ul.spot{
  list-style: none;
}

/* .router li:before{
  font-family: 'Font Awesome 5 Free';
  content: '\f21a';
  font-weight: 900;
  padding-right: 10px;
} */

.router li a .icon{
  font-family: 'Font Awesome 5 Free';
  content: '\f21a';
  font-weight: 900;
  padding-right: 10px;
}

.router li a{
  width: 100%;
  color: #559ECF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.router li{
  color: #559ECF;
  text-align: center;
  border-radius: 25px;
  border: solid 1px #559ECF;
  line-height: 50px;
  height: 50px;
  margin-bottom: 10px;
}

ul.router{
  list-style: none;
}

#pc_css #aboutkmp_block{
  background-color: #CCCCCC;
  /* margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1); */
  padding: 50px 3%;
  border-radius: 10px;
}

col.w20{
  width: 20%;
}

#pc_css .video-container .video{
  margin-top: 0;
}

/* ----------------------------- */
/*固定ページCSSの終わり */
/* ----------------------------- */

/* ----------------------------- */
/*固定ページ 固有CSS */
/* ----------------------------- */

.aboutkmp_cont{
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  margin: 30px 0;
  padding: 20px 30px 10px 30px;
  border-radius: 10px;
  background: #FFFFFF;
  counter-increment: aboutkmp_cont;
}

.aboutkmp_cont:before{
  position: absolute;
  top: -20px;
  right: -0;
  left: 0;
  width: 40px;
  height: 30px;
  margin: auto;
  padding: 10px 5px;
  border-radius: 50%;
  background: #49A148;
  color: #FFFFFF;
  text-align: center;
  content: counter(aboutkmp_cont);
  font-size: 30px;
  line-height: 30px;
}


ul.aboutaccess{
  list-style: none;
  padding-left: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  text-align: center;
}

ul.aboutaccess li{
  display: table-cell;
  font-size: 14px;
  vertical-align: top;
  color: #707070;
  background-color: #F4F4F4;
  padding: 5px 0;
}

ul.aboutaccess li.head{
  color: #FFFFFF;
  background-color: #8B8B8B;
  border: solid 2px #FFFFFF;
}

ul.aboutaccess li:first-child{
  width: 40%;
}

ul.aboutaccess:nth-child(2n) li{
  background-color: #FFFFFF;
}

div#aboutaccess_table{
  margin-bottom: 20px;
}

div.company_detail{
  margin-left: 10%;
}

div.company_detail ul{
  list-style: none;
  padding-left: 0;
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

div.company_detail ul li{
  width: 70%;
  display: table-cell;
  vertical-align: top;
  color: #707070;
  border-bottom: solid 1px #F4F4F4;
}

div.company_detail ul li:first-child{
  width: 30%;
}

div.guide_cont{
  margin-bottom: 30px;
}

div.faz_cont ul{
  list-style: none;
  padding-left: 0;
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

div.faz_cont ul li{
  width: 70%;
  display: table-cell;
  vertical-align: top;
  color: #707070;
  border-bottom: solid 1px #F4F4F4;
}

div.faz_cont ul li:first-child{
  width: 30%;
}

div.facilitiescontact ul{
  list-style: none;
  padding-left: 0;
  width: 100%;
  margin-bottom: 20px;
}

div.facilitiescontact ul li{
  margin-left: 10%;
}

div.facilitiescontact ul li:first-child{
  margin-left: 0;
}

div.facilitiescontact ul li:last-child{
  vertical-align: top;
  color: #707070;
  border-bottom: solid 1px #F4F4F4;
}

div.link_list ul{
  list-style: none;
  padding-left: 0;
  width: 100%;
  margin-bottom: 20px;
}

div.link_list ul li{
  margin-left: 10%;
}

div.link_list ul li:first-child{
  margin-left: 0;
}

div.link_list ul li:last-child{
  vertical-align: top;
  color: #707070;
  border-bottom: solid 1px #F4F4F4;
}

div#profile .profile_cont{
  padding: 10px 0;
  border-bottom: solid 1px #F4F4F4;
}

div#profile .profile_cont .profile_title{
  font-weight: 500;
  margin-bottom: 10px;
}

div#profile .profile_cont .ul_side ul{
  list-style: none;
  padding-left: 0;
  display: table;
  width: 100%;
  margin-bottom: 5px;
}

div#profile .profile_cont .ul_side ul li{
  width: 70%;
  display: table-cell;
  vertical-align: top;
}

#pc_css div#profile .profile_cont .ul_side ul li:first-child{
  width: 6%;
}

div#profile .profile_cont .ul_num ul{
  list-style: decimal;
  padding-left: 3%;
}

div#profile .profile_cont .ul_num ul li{
  padding-left: 3px;
  margin: 0 0 3px 0;
}

div#taisyaku{
  margin-top: 30px;
}

div#taisyaku .taisyaku_link{
  margin: 10px 15%;
  text-align: center;
  padding: 10px 0;
  background-color: #8B8B8B;
}

div#taisyaku .taisyaku_link a{
  color: #FFFFFF;
  display: block;
}

#pc_css div#contactform{
  margin: 0 5%;
}

#pc_css div#contactform input,#pc_css div#contactform textarea{
  margin: 2% 0;
}

#pc_css div#contactform div.forms{
  display: flex;
  align-items: center;
}

div#contactform div.form_buttons{
  text-align: center;
}

#pc_css div#contactform div.form_buttons{
  display: block;
}

#pc_css div#contactform div.forms p.form_name{
  width: 20%;
  margin-right: 2%;
}

#pc_css div#contactform div.forms p{
  width: 78%;
  margin-bottom: 0;
  line-height: 1.5;
}

#pc_css div#contactform div.forms .sform{
  width: 80%;
}

span.necessary{
  color: #752D13;
}

#pc_css div#contactform input.sendbutton{
  color: #559ECF;
  text-align: center;
  border-radius: 25px;
  border: solid 1px #559ECF;
  font-size: 18px;
  width: 40%;
  margin-left: 72px;
  margin-top: 2%;
}

.grecaptcha-badge{
  visibility: hidden;
}

#name_logo{
  text-align: center;
  margin-top: 1%;
}
#footer_name_logo{
  text-align: center;
  margin-top: 1%;
}
#footer_name_logo img{
  height: 15px
}

/* ----------------------------- */
/*固定ページ 固有CSS終了 */
/* ----------------------------- */




/* ----------------------------- */
/* 全体適用CSS */
/* ----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Sans:wght@400;700&display=swap');
body div#container{
  font-family: "Noto Sans KR" ,"Noto Sans SC" ,"Noto Sans TC" ,"Noto Sans JP" ,"Noto Sans" , sans-serif;
}
.entry-content{
  color: #707070;
}
.wrap{
  width: 100%;
}
main.main{
  padding: 0;
}
.content{
  margin-top: 0;
}
#navi-in a {
  color: #707070;
}
.header{
  width: 10%;
  margin: auto;
}
.header-container-in.hlt-top-menu .navi{
  width: 90%;
}
.navi-in>ul{
  flex-wrap: nowrap;
}
.navi-in > ul li{
  height: 80px;
  line-height: 80px;
  width: 186px;
}
.navi-in>ul li#menu-item-2618{
  width: 200px;
}
.navi-in > ul li .item-label{
  font-size: 14px;
  height: 80px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navi-in>ul li .sub-menu .item-label{
  height: 60px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.navi-in > ul li .sub-menu li{
  height: 60px;
  line-height: 60px;
}
a{
  text-decoration: none;
  color: #1C5938;
}
h1.entry-title{
  text-align: center;
  font-size: 26px;
  color: #707070;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 0;
  margin-bottom: 50px;
}
h1.entry-title span{
  font-size: 20px;
}
.s_font{
  font-size: 14px;
  display: block;
  font-weight: normal;
  margin-top: 5px;
}
/* #pc_css .entry-content{
  margin: 0 20%;
}
#pc_css .eye-catch-wrap{
  margin: 0 20%;
} */
#pc_post{
  margin: 0 20%;
}
.footer{
  margin-top: 0;
}
#custom_head{
  height: 50px;
  width: 100%;
  background-color: #F4F4F4;
  position: relative;
  overflow: hidden;
}
#custom_head ul{
  position: absolute;
  right: -720px;
  display: flex;
  list-style: none;
  transition: all .5s ease-in-out;
}
#custom_head ul:hover{
  transform: translateX(-720px);
}
#custom_head ul li{
  width: 120px;
  /* padding: 0 10px; */
  text-align: center;
  line-height: 50px;
  color: #707070;
}

#custom_head ul li a{
  display: block;
  color: #707070;
}

div#assessment{
  margin: 3% 20%;
  width: 60%;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #559ECF;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #707070;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

.tab_content_description p{
  color: #707070;
}

.tab_content_description .insta_desc{
  display: flex;
  flex-wrap: wrap;
}

.tab_content_description .insta_desc div{
  width: calc(100%/3 - 2px);
  height: 200px;
  margin: 1px;
}

.tab_content_description .insta_desc div a img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tab_content_description .tw_desc{
  height: 848px;
  overflow-y: scroll;
}

.tab_content_description .tw_desc .tweetdiv{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 1% 0;
  padding: 1%;
  border: 1px solid #707070;
  border-radius: 25px;
}

.tab_content_description .tw_desc .tweetdiv .tw_icon{
  width: auto;
  height: 48px;
}

.tab_content_description .tw_desc .tweetdiv .tw_icon img{
  border-radius: 50%;
}

.tab_content_description .tw_desc .tweetdiv .tw_name{
  width: auto;
  margin-left: 2%;
  font-weight: 500;
}
.tab_content_description .tw_desc .tweetdiv .tw_id{
  width: auto;
  margin-left: 2%;
}

.tab_content_description .tw_desc .tweetdiv .tw_text{
  width: 93%;
  margin-left: calc(2% + 48px);
}

.tab_content_description .tw_desc .tweetdiv .tw_img_list{
  margin-top: 2%;
  width: 100%;
}

.tab_content_description .tw_desc .tweetdiv .tw_img_list img{
  width: 25%;
  height: 200px;
  object-fit: cover;
}

.tab_content_description .cruisemans_desc{
  height: 848px;
  overflow-y: scroll;
}

/*選択されているタブのコンテンツのみを表示*/
#insta:checked ~ #insta_cont,
#tw:checked ~ #tw_cont,
#cruisemans:checked ~ #cruisemans_cont {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #559ECF;
  color: #fff;
}

/* Photo&Video */
div#dim60{
  width: 60%;
  margin: auto;
}

div#dim80 {
  width: 80%;
  margin: auto;
}

.archive_photo p.hit_number{
  font-size: 20px;
  border-bottom: #0097DC 5px solid;
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.archive_photo form{
  width: 600px;
  margin: 0 auto 50px;
  /* padding: 20px 50px 50px;
  border: #707070 1px solid; */
  border-radius: 10px;
  box-sizing: content-box;
}

.archive_photo form div{
  display: flex;
  flex-wrap: wrap;
}

.archive_photo form div p{
  width: 100%;
}

.archive_photo form div input[type="text"]{
  width: 80%;
  box-sizing: border-box;
  border-radius: 5px 0 0 5px;
  border: none;
  background-color: #d9d9d9;
  padding: 16px 10px;
  outline: 0;
}

.archive_photo form div input[type="submit"]{
  width: 20%;
  box-sizing: border-box;
  border-radius: 0 5px 5px 0;
  border: none;
  background-color: #0097DC;
  color: #FFFFFF;
}

div.separator{
  display: flex;
  flex-wrap: wrap;
}

div.separator .side_cont{
  width: 20%;
}

.side_widget{
  padding: 0 20px;
}

.side_widget p{
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 3px dotted #0097cd;
  font-size: 20px;
}

.side_widget ul{
  padding-left: 0;
  list-style: none;
}

div.separator .main_cont{
  width: 80%;
}

ul.pv_list{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}

ul.pv_list li{
  width: 32%;
  margin-bottom: 30px;
}

ul.pv_list li:nth-child(3n - 1){
  margin-left: 2%;
  margin-right: 2%;
}

ul.pv_list li div.photo_div{
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

ul.pv_list li img{
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.5s 0s ease;
}

ul.pv_list li p{
  background-color: #FFFFFF;
  text-align: left;
  color: #707070;
  padding: 10px 16px;
  border: 1px solid #707070;
  border-radius: 0 0 20px 20px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

ul.pv_list li a:hover img{
  transform: scale(1.1);
}

ul.pv_list li p span{
  font-size: 14px;
}

.single_photo_video div.youtube{
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 30px;
}

.single_photo_video div.youtube iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.single_photo_video div.photo{
  width: 80%;
  margin: 0 auto 10px;
}

.single_photo_video div.photo img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single_photo_video div.photo .photo_list{
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.single_photo_video div.photo .photo_list li{
  width: 23%;
  margin-bottom: 10px;
}

.single_photo_video div.photo .photo_list li img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single_photo_video .post_date{
  margin-bottom: 10px;
}

.single_photo_video .post_date span{
  border-bottom: 2px solid #0097DC;
  font-size: 16px;
}

div.img_nonflex{
  text-align: center;
}

.img_flex2{
  display: flex;
  flex-wrap: wrap;
}

div.img_flex2 img{
  height: 100%;
  margin: 0;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.back_block{
  padding: 10px 30px 20px;
  background-color: #F4F4F4;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
}

img.non_margin{
  margin: 0;
}

ul.link-list{
  list-style: none;
  padding-left: 0;
  margin: 30px 0 20px;
}

ul.link-list li{
  margin-bottom: 12px;
}

ul.link-list li i{
  margin-right: 10px;
}

/* ul.fa li.fa-pdf:before {
  content: "\f1c1";
}

ul.fa li.fa-youtube:before {
  content: "\f167";
}

ul.fa li.fa-external-link-alt:before {
  content: "\f35d";
} */

@media print {
  body {
    -webkit-print-color-adjust: exact;
    top: 0 !IMPORTANT;
    left: 0 !IMPORTANT;
    width: 200mm !IMPORTANT;
    height: 290mm !IMPORTANT;
  }

  .page_margin{
    margin: 0;
  }

  div.img_flex2 div[class^="w"] {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  div.img_flex2 img{
    height: auto;
  }
}

*.pc {
  display: block;
}

*.sp {
  display: none;
}