@charset "UTF-8";

body {
    color: #333333;
}

.img-aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
}

.post_content {
    max-width: 800px;
}

h2 {
    border-bottom: solid 5px #05A6B6;
    position: relative;
}

h2:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 5px #E3D82B;
    bottom: -5px;
    width: 30%;
}

article.post h2 {
    font-size: 24px;
}

h3 {
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    color: #494949;
    /*文字色*/
    background: transparent;
    /*背景透明に*/
    border-left: solid 4px #05A6B6;
    /*左線*/
}

article.post h3 {
    font-size: 20px;
}

h4 {
    position: relative;
    padding-left: 35px;
    font-weight: bold;
	font-size: 120%;
    margin-bottom: 0.3em;
}

h4:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f164";
    background: #E3D82B;
    color: white;
    font-weight: 900;
    font-size: 15px;
    border-radius: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

h4:after {
    /*吹き出しのちょこんと出た部分*/
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    height: 0;
    width: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #E3D82B;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.memo-box {
    position: relative;
    padding: 4.5rem 1rem 1rem;
    background-color: #f1f1f1;
    outline: 2px solid #333;
    outline-offset: -0.5rem;
    line-height: 2rem;
    box-shadow: 0px 10px 6px -6px #777;
    margin-bottom: 6px;
}

.memo-box::before {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    background-color: rgb(227, 216, 43, .7);
    color: white;
    text-align: center;
    content: attr(data-title);
}

.memo-box p {
    color: #333;
    line-height: 1.5;
}

.table_box {
    max-width: 750px;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	padding: 0!important;
}

th,
td {
    vertical-align: middle;
    padding: 20px;
    border: 1px solid #fff;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

th {
    background: #ccc;
}

td {
    background: #fff;
}

.sticky_row {
    position: sticky;
    top: 0;
    left: 0;
    background: none;
    border-left: none;
    border-right: none;
}



table {
  overflow-x: auto;
	display: block;
}

@media (max-width: 768px) {
  th, td {
    white-space: nowrap;
  }
}


.sticky_row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background: #05a6b6;
    z-index: -1;
}

.sticky_col {
    position: sticky;
    top: 0;
    left: 0;
    background: none;
    border-top: none;
    border-bottom: none;
    background: #05a6b6;
}

.sticky_col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: #05a6b6;
    z-index: -1;
}

.sticky_cross {
    position: sticky;
    top: 0;
    left: 0;
    background: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    z-index: 1;
}

.sticky_cross::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    background: #05a6b6;
    z-index: -1;
}

p {
    margin: 1em 0;
}

.news-detail__body {
    line-height: 1.9;
    letter-spacing: 0.1em;
}

.post_content img {
    padding-bottom: 0;
}

.post_content p {
    letter-spacing: 0.03em;
    line-height: 1.8em;
    padding: 1em 0;
}

.wp-block-quote {
    text-align: center;
    margin: 25px 0;
}

.wp-block-quote p {
    padding-bottom: 0;
}

/*動くマーカー 黄色*/
.marker {
    background-image: linear-gradient(transparent 75%, #e3dd88 75%);
    background-image: -webkit-linear-gradient(transparent 75%, #e3dd88 75%);
    background-image: -moz-linear-gradient(transparent 75%, #e3dd88 75%);
    background-position: 0% bottom;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 3.5s;
    transition: all 3.5s;
    font-weight: bold;
    font-size: 120%;
	line-height: 180%;
}

.marker.animate {
    background-size: 100% 100%;
}

/*動くマーカー 青色*/
.marker-blue {
    background-image: linear-gradient(transparent 75%, #00A8B6 75%);
    background-image: -webkit-linear-gradient(transparent 75%, #00A8B6 75%);
    background-image: -moz-linear-gradient(transparent 75%, #00A8B6 75%);
    background-position: 0% bottom;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 3.5s;
    transition: all 3.5s;
    font-weight: bold;
    font-size: 120%;
	line-height: 180%;
}

.marker-blue.animate {
    background-size: 100% 100%;
}

/*動くマーカー 赤色*/
.marker-red {
    background-image: linear-gradient(transparent 75%, #e3dd88 75%);
    background-image: -webkit-linear-gradient(transparent 75%, #e3dd88 75%);
    background-image: -moz-linear-gradient(transparent 75%, #e3dd88 75%);
    background-position: 0% bottom;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 3.5s;
    transition: all 3.5s;
    font-weight: bold;
    font-size: 120%;
	line-height: 180%;
}

.marker-red.animate {
    background-size: 100% 100%;
}

.cta_btn09 {
    font-weight: bold;
    /* 文字の太さ */
    text-align: center;
    letter-spacing: 0.1em;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 1.4em;
}

.post_content a {
    text-decoration: none;
}

.cta_btn09-contact,
.cta_btn09-tel,
.cta_btn09-line {
    color: #fff;
    /* 文字色 */
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 1em 1em 1em 60px;
    border-radius: 100vh;
    width: 100%;
    /* ボタン幅 */
    max-width: 350px;
    /* 最低ボタン幅 */
    transition: 0.3s;
}

.cta_btn09-contact {
    background: #F88400;
    /* お問い合わせボタン色 */
    box-shadow: 0 5px 0 #572E00;
}

.cta_btn09-tel {
    background: #4D9BC1;
    /* 電話ボタン色 */
    box-shadow: 0 5px 0 #122E3B;
}

.cta_btn09-line {
    background: #06c755;
    /* LINEボタン色 */
    box-shadow: 0 5px 0 #034A22;
}

.cta_btn09-contact::before,
.cta_btn09-tel::before,
.cta_btn09-line::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta_btn09-contact::before {
    width: 47px;
    height: 47px;
    background-image: url(https://cools-kyutoki.com/wp-content/uploads/2024/01/icon_mail.png);
    /* メールアイコン */
}

.cta_btn09-tel::before {
    width: 45px;
    height: 45px;
    background-image: url(https://cools-kyutoki.com/wp-content/uploads/2024/01/icon_tel.png);
    /* 電話アイコン */
}

.cta_btn09-line::before {
    width: 47px;
    height: 47px;
    background-image: url(https://cools-kyutoki.com/wp-content/uploads/2024/10/icon_line.png);
    /* メールアイコン */
}

.cta_btn09 .copy_txt {
    line-height: 1;
    display: inline-block;
    padding: 0.2em 1.5em;
    letter-spacing: 0;
    background: #fff;
    /* 下文字背景色 */
    font-size: 90%;
    /* 下文字サイズ */
    border-radius: 5px;
}

.cta_btn09-contact .copy_txt {
    color: #F88400;
    /* 下文字色 */
    margin-top: 5px;
}

.cta_btn09-tel .copy_txt {
    color: #4D9BC1;
    /* 下文字色 */
    margin-top: 5px;
}

.cta_btn09-line .copy_txt {
    color: #06c755;
    /* 下文字色 */
    margin-top: 5px;
}

.cta_btn09 img {
    width: 1em;
    margin-right: 0.5em;
}

/* マウスオーバーした際のデザイン */
.cta_btn09-contact:hover {
    transform: translate(0, 3px);
    background: #F88400;
    /* 背景色 */
    box-shadow: 0 2px 0 #19934e;
    opacity: 1;
}

.cta_btn09-tel:hover {
    transform: translate(0, 3px);
    background: #4D9BC1;
    /* 背景色 */
    box-shadow: 0 2px 0 #19934e;
    opacity: 1;
}

.cta_btn09-line:hover {
    transform: translate(0, 3px);
    background: #06c755;
    /* 背景色 */
    box-shadow: 0 2px 0 #19934e;
    opacity: 1;
}

@media only screen and (max-width: 1023px) {
    .cta-container {
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-container {
        display: block;
        padding: 20px;
    }

    .cta-right,
    .cta-left {
        width: 100%;
    }
}


/* CTAボタン */

.cta-btn {
    display: inline-block;
    padding: 1em 1em;
    text-decoration: none !important;
    background-color: #db4a39;
    /*ボタン色*/
    color: #fff !important;
    border-bottom: solid 4px #a92d1f;
    /* 影の色 */
    border-radius: 8px;
}

.cta-btn:hover {
    background-color: #e37164;
    /* マウスホバー時 */
}

.cta-btn:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    border-bottom: none;
}

a.cta_btn09-contact,
a.cta_btn09-tel,
a.cta_btn09-line {
    color: #fff;
    opacity: 1;
}

a.cta_btn09-contact:hover,
a.cta_btn09-tel:hover,
a.cta_btn09-line:hover {
    opacity: 1;
}

img.banner-mogu {
    padding-bottom: 0;
}

.banner-mogu {
    position: static;
}

img.banner-mogu.banner-margin {
    margin-bottom: 45px;
}

@media screen and (min-width: 835px) {
    img.banner-mogu {
        width: 50%;
        display: block;
        margin: auto;
    }
}

@media screen and (max-width: 834px) {
    body {
        margin: 2.5%;
    }
}

@media screen and (max-width: 480px) {
    .page_header .title-jp {
        font-size: 22px;
    }
}


/* ボタン全体 */
.flowbtn12 {
    font-family: 'Verdana', sans-serif;
    border-radius: 4px;
    display: inline-block;
    width: 90%;
    font-size: 20px;
    transition: .4s;
    text-decoration: none;
}

/* ボタン内テキストマウスホバー時 */
.flowbtn12:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Twitter */
.fa-twitter:before {
    content: '𝕏' !important;
    font-family: sans-serif !important;
    font-weight: bold;
}

.flowbtn12.fl_tw2 {
    border: solid 1px #333;
    color: #333;
}

/* Twitterマウスホバー時 */
.flowbtn12.fl_tw2:hover {
    border: solid 1px #333;
    background: #333;
}

/* Instagram */
.flowbtn12.insta_btn2 {
    border: solid 1px #c6529a;
    color: #c6529a;
}

/* Instagramマウスホバー時 */
.flowbtn12.insta_btn2:hover {
    border: solid 1px #c6529a;
    background: #c6529a;
}

/* Facebook */
.flowbtn12.fl_fb2 {
    border: solid 1px #3b5998;
    color: #3b5998;
}

/* Facebookマウスホバー時 */
.flowbtn12.fl_fb2:hover {
    border: solid 1px #3b5998;
    background: #3b5998;
}

/* Feedly */
.flowbtn12.fl_fd2 {
    border: solid 1px #6cc655;
    color: #6cc655;
}

/* Feedlyマウスホバー時 */
.flowbtn12.fl_fd2:hover {
    border: solid 1px #6cc655;
    background: #6cc655;
}

/* Pocket */
.flowbtn12.fl_pk2 {
    border: solid 1px #ef3f56;
    color: #ef3f56;
}

/* Pocketマウスホバー時 */
.flowbtn12.fl_pk2:hover {
    border: solid 1px #ef3f56;
    background: #ef3f56;
}

/* はてブ */
.flowbtn12.fl_hb2 {
    border: solid 1px #1ba5dc;
    color: #1ba5dc;
}

/* はてブマウスホバー時 */
.flowbtn12.fl_hb2:hover {
    border: solid 1px #1ba5dc;
    background: #1ba5dc;
}

/* YouTube */
.flowbtn12.fl_yu2 {
    border: solid 1px #fc0d1c;
    color: #fc0d1c;
}

/* YouTubeマウスホバー時 */
.flowbtn12.fl_yu2:hover {
    border: solid 1px #fc0d1c;
    background: #fc0d1c;
}

/* LINE */
.flowbtn12.fl_li2 {
    border: solid 1px #00c300;
    color: #00c300;
}

/* LINEマウスホバー時 */
.flowbtn12.fl_li2:hover {
    border: solid 1px #00c300;
    background: #00c300;
}

/* メールアイコン */
.flowbtn12.fl_ma2 {
    border: solid 1px #f3981d;
    color: #f3981d;
}

/* メールアイコンマウスホバー時 */
.flowbtn12.fl_ma2:hover {
    border: solid 1px #f3981d;
    background: #f3981d;
}

/* プロフィールアイコン */
.flowbtn12.fl_pf12 {
    border: solid 1px #555;
    color: #555;
}

/* プロフィールアイコンマウスホバー時 */
.flowbtn12.fl_pf12:hover {
    border: solid 1px #555;
    background: #555;
}

/* ボタン内テキスト調整 */
.flowbtn12 span {
    font-size: 14px;
    position: relative;
    left: 8px;
    vertical-align: middle;
}

/* ulタグの内側余白を０にする */
ul.snsbtniti2 {
    padding: 0 !important;
    list-style-type: none !important;
}

/* ボタン全体の位置 */
.snsbtniti2 {
    display: flex;
    flex-flow: row wrap;
}

/* ボタン同士の余白 */
.snsbtniti2 li {
    flex: 0 0 24%;
    text-align: center !important;
}


/* ボタン同士の余白 */
@media screen and (max-width: 480px) {
    .snsbtniti2 li {
        flex: 0 0 50%;
        margin-bottom: 25px;
    }
}

/* LINEボタン */

.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

/*背景*/
.btn-wrap {
    margin: 0 0 20px 0;
    text-align: center;
}

a.btn-c {
    position: relative;
    color: #fff;
    border: 2px solid #222;
    border-radius: 100vh;
    background: #05AC00;
    -webkit-box-shadow: 0 5px 0 #7ebea5;
    box-shadow: 0 5px 0 #7ebea5;
}

a.btn-c span {
    font-size: 0.8rem;
    line-height: 1.3;
    position: absolute;
    top: -10px;
    left: -20px;
    width: 64px;
    height: 64px;
    padding-top: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #222;
    border: 2px solid #222;
    border-radius: 50%;
    background: #fff;
}

a.btn-c span em {
    font-style: normal;
    color: #d20010;
}

a.btn-c small {
    font-weight: bold;
}

a.btn-c i {
    margin-right: 1rem;
}

a.btn-c:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #000;
    background: #7ebea5;
    -webkit-box-shadow: 0 2px 0 #7ebea5;
    box-shadow: 0 2px 0 #7ebea5;
}

a.btn-c:hover span {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
}

#ez-toc-container {
	margin: 50px 0;
}

@media screen and (max-width: 430px) {
	#ez-toc-container {
	margin: 0 auto 50px;
}
}

h5 {
  padding: 1rem 2rem;
  border-top: 3px double #E26D5A;
  background: #f4f4f4;
  margin-top: 2rem;
}

h6 {
	padding: 0 10px;
}

.merit {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem 1rem 4rem;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  background: #fa4141;
}

.merit:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

th._sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}
th._sticky:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E2D848;
  z-index: -1;
}

.post_content table tbody td {
	border: 1px solid #FFF
}