@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Beth+Ellen&family=Noto+Sans+JP&family=Zen+Maru+Gothic&display=swap');

:root {
--honbun: #4A3D21;
--orange: #F76F1A;
--green: #24C460;
--grd:  linear-gradient(90deg, rgba(248, 113, 24, 1), rgba(239, 69, 67, 1));
--gry: #A9A49A;
--border: #C8C8C8;
--beige:#F7F4EE;
}

.mt1{margin-top:1px;} .mt2{margin-top:2px;} .mt3{margin-top:3px;} .mt4{margin-top:4px;} .mt5{margin-top:5px;} .mt6{margin-top:6px;} .mt7{margin-top:7px;} .mt8{margin-top:8px;} .mt9{margin-top:9px;} .mt10{margin-top:10px;} .mt11{margin-top:11px;} .mt12{margin-top:12px;} .mt13{margin-top:13px;} .mt14{margin-top:14px;} .mt15{margin-top:15px;} .mt16{margin-top:16px;} .mt17{margin-top:17px;} .mt18{margin-top:18px;} .mt19{margin-top:19px;} .mt20{margin-top:20px;} .mt21{margin-top:21px;} .mt22{margin-top:22px;} .mt23{margin-top:23px;} .mt24{margin-top:24px;} .mt25{margin-top:25px;} .mt26{margin-top:26px;} .mt27{margin-top:27px;} .mt28{margin-top:28px;} .mt29{margin-top:29px;} .mt30{margin-top:30px;} .mt31{margin-top:31px;} .mt32{margin-top:32px;} .mt33{margin-top:33px;} .mt34{margin-top:34px;} .mt35{margin-top:35px;} .mt36{margin-top:36px;} .mt37{margin-top:37px;} .mt38{margin-top:38px;} .mt39{margin-top:39px;} .mt40{margin-top:40px;} .mt41{margin-top:41px;} .mt42{margin-top:42px;} .mt43{margin-top:43px;} .mt44{margin-top:44px;} .mt45{margin-top:45px;} .mt46{margin-top:46px;} .mt47{margin-top:47px;} .mt48{margin-top:48px;} .mt49{margin-top:49px;} .mt50{margin-top:50px;}

/* 要素リセット*/
:where(
  div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6,
  p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video
) { 
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* リスト */
main#kagome2026 ol,
main#kagome2026 ul {
  list-style: none;
}

/* 引用 */
main#kagome2026 blockquote,
main#kagome2026 q {
  quotes: none;
}

main#kagome2026 blockquote::before,
main#kagome2026 blockquote::after,
main#kagome2026 q::before,
main#kagome2026 q::after {
  content: '';
}

/*==================================================

コンテンツ

===================================================*/
html{
    font-size: 62.5%;
}
body{
    margin: 0;
    font-family: "Noto Sans JP","游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.kome{
    color: #878787;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 20px;
}
.btn{
    border-radius: 90px;
    font-size: 1.6rem;
    text-align: center;
    display: block;
    box-sizing: border-box;
    padding: 20px 40px;
    line-height: 1;
}
a{
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    color: #333;
}
a:hover{
    opacity: 0.7;
}
.btn.kagome2026_entry{
  background: linear-gradient(90deg, #F87118, #EF4543);
  border: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.kagome2026_entry:hover{
    opacity: 1;
}
.btn.kagome2026_entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  
  transform: skewX(-25deg); 
  transition: left 0.6s ease; 
  z-index: 2;
}
.btn.kagome2026_entry:hover::before {
  left: 125%;
}
.font1{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.font2{
    font-family: "Beth Ellen", cursive;
    font-weight: 400;
}
.flex{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.inner{
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}
main#kagome2026{
    font-weight: 500;
    line-height: 1.6;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--honbun);
    margin: 0;
}
main#kagome2026 .txt_link{
    text-decoration: underline;
}
main#kagome2026 .txt_link:hover{
    opacity: 0.7;
}
main#kagome2026 .pass{
    width: 100%;
}
main#kagome2026 dl{
    display: flex;
    justify-content: flex-start;
    font-size: 1.4rem;
}
main#kagome2026 dt{
font-weight: 600;
    width: 66px;
}
main#kagome2026 .sec{
    position: relative;
    margin: 80px auto;
}
main#kagome2026 .pr{
    position: relative;
}
main#kagome2026 .ab{
    position: absolute;
}
main#kagome2026 .fs13{
    font-size: 1.3rem;
}
main#kagome2026 .bold{
    font-weight: bold;
}
main#kagome2026 .shdw{
    text-shadow: 0.3px 0.3px 0px rgb(74 61 33), 0.3px -0.3px 0px rgb(74 61 33);
}
main#kagome2026 .orng{
    color: var(--orange);
}
main#kagome2026 .grn{
    color: var(--green);
}
main#kagome2026 .snmall{
    color: var(--gry);  
    font-size: 1.3rem;
}
main#kagome2026 .read{
    text-align: center;
    margin: 50px auto;
}
main#kagome2026 .btn.campaign{
    background: #fff;  
    color: var(--green);
    border: 2px solid var(--green);
}
main#kagome2026 .btn.campaign:hover{
    background:var(--green);
    color: #fff;  
    opacity: 1;
}
.pc{
	display: block;
}
.sp{
    display:none;
}
main#kagome2026 .flex.f_center{
    align-items: center;
}
main#kagome2026{
    position: relative;
}
main#kagome2026 .center{
	text-align: center;
}
main#kagome2026:before,
main#kagome2026:after{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
main#kagome2026 .btn_wrap{
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
main#kagome2026 table{
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--border);
}
main#kagome2026 table th{
    width: 223px;
    background: #ECE3D0;
    padding: 30px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
main#kagome2026 table td{
    background: #fff;
    padding: 30px;
    border-bottom: 1px solid var(--border);
}
main#kagome2026 h2{
    font-size: 3rem;
    margin-bottom: 31px;
    text-shadow: 0.3px 0.3px 0px rgb(74 61 33), 0.3px -0.3px 0px rgb(74 61 33);
}
main#kagome2026 h2 .font2{
    font-size: 1.5rem;
    text-align: center;
    display: block;
    text-shadow:none;
}
main#kagome2026 h2 .sml{
    font-size: 2.3rem;
    margin-top: 9px;
    margin-bottom: 4px;
}
main#kagome2026 h2 .line{
    position: relative;
    z-index: 2;
}
main#kagome2026 h2 .line:after{
    position: absolute;
    z-index: -1;
    content: "";
    background: #F5EFCA;
    width: 100%;
    height: 12px;
    bottom: -1px;
    left: 0;
}
main#kagome2026 .mv{
    background: url(../../img/mv_bg.jpg);
    background-size: cover;
    box-sizing: border-box;
    padding-top: 50px;
    position: relative;
}
main#kagome2026 .mv h1{
    font-size: 4.5rem;
    text-shadow: 0.3px 0.3px 0px rgb(74 61 33), 0.3px -0.3px 0px rgb(74 61 33);
}
main#kagome2026 .mv .illust1{
    width: 22%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
main#kagome2026 .mv .illust2{
    bottom: -390px;
    left: -10px;
    width: 17%;
    opacity: 0.6;
}
main#kagome2026 .mv .pic1{
    width: 38%;
}
main#kagome2026 .mv .pic2{
    bottom: -37%;
    right: 15%;
    width: 13%;
    z-index: 2;
}
main#kagome2026 .mv .txt .small{
    border-top: dotted 1px #000;
    border-bottom: dotted 1px #000;
    padding: 24px 4px;
    line-height: 0;
    display: inline-block;
    margin-bottom: 24px;
}
main#kagome2026 .mv .copy{
    font-size: 2.4rem;
    margin-top: 30px;
    position: relative;
    left: 3px;
    letter-spacing: 0.14em;
}
main#kagome2026 .mv .main_copy{
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
}
main#kagome2026 .mv .maru1:after{
    background: url(../../img/maru1.png);
    width: 40px;
    height: 39px;
    top: 54%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    z-index: -1;
}
main#kagome2026 .mv .maru2:after{
    background: url(../../img/maru2.png);
    width: 40px;
    height: 39px;
    top: 54%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    z-index: -1;
}
@media screen and (max-width:1145px) {
    main#kagome2026 .mv h1{
        font-size: 3.2rem;
    }
    main#kagome2026 .mv .copy{
        font-size: 1.8rem;
    }
    main#kagome2026 .mv .pic2 {
        bottom: -120px;
        right: 30px;
        width: 13%;
    }
    main#kagome2026 table td{
        padding: 20px;
        font-size: 1.4rem;
        line-height: 1.6;
    }
}
@media screen and (max-width:768px) {
    main#kagome2026 .inner{
        max-width: 90%;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    main{
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
    }
}/*SP用設定ここまで*/
@media screen and (max-width:768px) {
    main#kagome2026 .mv{
        margin-top: 63px;
        padding-bottom: 25px;
    }
    main#kagome2026 .mv .main_copy{
        display: block;
        width: 85%;
        margin: 0 auto;
    }
    main#kagome2026 .mv h1 {
        font-size: 2.8rem;
    }
    main#kagome2026 .mv .copy{
        font-size: 1.6rem;
        margin-top: 18px;
    }
    main#kagome2026 .mv .txt .small{
        margin-bottom: 15px;
        display: block;
        line-height: 1.3;
        text-align: center;
        font-size: 1.4rem;
        padding: 15px 0;
    }
    main#kagome2026 .mv .txt{
        position: relative;
        z-index: 3;
    }
    main#kagome2026 .mv .illust1{
        opacity: 0.4;
        width: 52%;
    }
    main#kagome2026 .mv .mv_img{
        width: 90%;
        margin: 25px auto;
        position: relative;
        z-index: 2;
    }
    main#kagome2026 .pass1{
        position: relative;
        top: -1px;
    }
    main#kagome2026 .sec{
        margin: 50px auto;
    }
   main#kagome2026 .sec1 .illust2 {
        top: -50px;
        left: -30px;
        width: 38%;
        opacity: 0.2;
    }
    main#kagome2026 h2{
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    main#kagome2026 h2 .sml{
        font-size: 1.5rem;
    }
    main#kagome2026 .read {
        text-align: center;
        margin: 20px auto;
        font-size: 1.4rem;
    }
}/*SP用設定ここまで*/


/*==================================================
header
===================================================*/
header{
    padding: 15px;
}
header .kagome2026_entry{
    font-size: 1.5rem;
    padding: 15px 30px;
    width: auto;
    display: inline-block;
}
header .flex{
    align-items: center;
    gap:10px;
}
 header .kagome2026_entry.pc{
    display: block;
}
header .kagome2026_entry.sp{
    display: none;
}
@media screen and (max-width:768px) {
    header{
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 8px;
        padding-top: 12px;
                z-index: 100;
    }
    header .flex{
        justify-content: space-between;
                gap: 5px
    }
    header .kagome2026_entry.pc{
        display: none;
    }
    header .kagome2026_entry.sp{
        display: block;
        font-size: 1.3rem;
        font-weight: 700;
        padding: 10px 15px;
    }
    header .logo1{
        width: 65px;
    }
    header .logo2{
        width: 116px;
    }
}


/*==================================================
footer
===================================================*/
footer{
    padding: 40px 0;
}
footer .logo{
    align-items: center;
    gap: 40px;
}
footer .msg{
    text-align: right;
    color: #454545;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4;
}
footer .line1{
    align-items: center;
}
footer .line2{
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 50px;
    font-weight: 400;
}


@media screen and (max-width:768px) {
    footer .msg {
        text-align: center;
        color: #454545;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 2;
        margin-top: 34px;
    }
    footer .line2{
        display: block;
        margin-top: 20px;
    }
    footer .line2 a{
        display: block;
        width: 100%;
        border-bottom: 1px solid #c1c1c1;
        padding: 15px 0;
        box-sizing: border-box;
    }
    footer .line2 span{
        display: none;
    }
}


/*==================================================
MV以下
===================================================*/
main#kagome2026 .sec1 h2{
    font-size: 2rem;
    text-shadow: none;
}
main#kagome2026 .sec1 .message{
    position: relative;
    z-index: 3;
}
main#kagome2026 .sec1 .txt{
    font-size: 1.6rem;
    line-height: 3;
    margin-top: 22px;
}
main#kagome2026 .sec2 .inner{
    box-shadow: 10px 10px 0px 0px #7A5912;
    border: 1px solid #7A5912;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 70px 50px 50px;
}
main#kagome2026 .sec2 .step_box{
    background: #F7F4EE;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 40px;
    margin-bottom: 20px;
}
main#kagome2026 .sec2 .step_box .label{
    font-size: 1.6rem;
    margin-left: -52px;
    position: relative;
    margin-top: -16px;
    font-weight: 600;
}
main#kagome2026 .sec2 .step_box .label span{
    font-size: 3.2rem;
    font-weight: 500;
    margin-right: 10px;
}
main#kagome2026 .sec2 .step_box h3{
    font-size: 2.5rem;
    font-weight: 600;
    margin: 20px 0;
}
main#kagome2026 .sec2 .step_box .honbun{
    line-height: 2;
}
main#kagome2026 .sec3{
    background-image: url("../../img/bg.jpg");
    background-size: cover;
    padding: 70px 0;
}
main#kagome2026 .sec3 .kagome2026_entry{
    width: 369px;
    margin: 40px auto 20px;
    font-size: 2rem;
}
main#kagome2026 .sec3 .illust2{
    bottom: -140px;
    width: 15%;
    left: -30px;
}
main#kagome2026 .sec3 .illust1{
    top: -130px;
    right: 0;
    width: 15%;
}
main#kagome2026 .sec4 .flex{
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
}
main#kagome2026 .sec4 .flex .box{
   width: 49%; 
}
main#kagome2026 .sec4 .flex .border_bg{
box-shadow: 3px 3px 0px 0px #7A5912;
border: 1px solid #7A5912;
border-radius: 20px;
box-sizing: border-box;
overflow: hidden;
}
main#kagome2026 .sec4 .flex .box .padding{
    padding: 30px;
}
main#kagome2026 .sec4 .flex .box img{
    width: 100%;
}
main#kagome2026 .sec4 .flex .box .ttl{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
main#kagome2026 .sec4 .flex .box .gr_bg{
    background: #F0F0F0;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-top: 27px;
}
main#kagome2026 .sec4 .flex .box .honbun{
    line-height: 2;
}
main#kagome2026 .sec5{
    background: #e7e0d4;
    padding: 70px 0;
    margin-top: -203px;
    margin-bottom: 0px;
}
main#kagome2026 .sec5 .flex{
    gap: 80px;
    flex-wrap: nowrap;
}
main#kagome2026 .sec5 iframe{
    height: 308px;
}
main#kagome2026 .sec5 h3{
    font-size: 2.2rem;
    margin-bottom: 15px;
}
main#kagome2026 .sec5 .copy{
    font-size: 1.7rem;
    margin-bottom: 15px;
}
main#kagome2026 .sec5 .wt_bg{
    background: #fff;
    border-radius: 5px;
    padding: 13px;
    margin-top: 20px;
}
main#kagome2026 .org_bg{
    background: #eeede9;
    padding: 24px 0 200px;
    margin-top: -30px;
} 
main#kagome2026 .org_bg .pc{
    margin: 0 auto;
}
main#kagome2026 .org_bg .read{
    margin: 29px auto;
}
main#kagome2026 .org_bg .flex .border_bg{
    background: #fff;
}
main#kagome2026 .org_bg .flex .border_bg .pink{
    color: #F25F6D;
}
main#kagome2026 .org_bg .flex .border_bg .btn.pink{
    background: #f25f6d;
    color: #fff;
    margin: 20px 0;
}
main#kagome2026 .org_bg .flex .border_bg .green{
    color: #167530;
}
main#kagome2026 .org_bg .flex .border_bg .btn.green{
    background: #167530;
    color: #fff;
    margin: 20px 0;
}
main#kagome2026 .org_bg .flex .border_bg strong{
    font-size: 3rem;
    border-bottom: 1px dotted;
}
@media screen and (max-width:768px) {
    main#kagome2026 .center img{
        width: 100%;
    }
    main#kagome2026 .sec1 h2{
        margin-bottom: 10px;
    }
    main#kagome2026 .sec1 .txt{
        font-size: 1.5rem;
        line-height: 2;
        margin-top: 10px;
    }
    main#kagome2026 .sec2 .inner{
        padding: 40px 10px 10px;
        background: #fff;
        position: relative;
        z-index: 3;
    }
    main#kagome2026 .sec2 .step_box img{
        width: 100%;
    }
    main#kagome2026 .sec2 .step_box{
        display: block;
            padding: 20px;
    }
    main#kagome2026 .sec2 .step_box .label {
        font-size: 1.2rem;
        margin-left: 0;
        position: relative;
        margin-top: 4px;
        font-weight: 600;
    }
    main#kagome2026 .sec2 .step_box .label span{
        font-size: 2.5rem;
    }
    main#kagome2026 .sec2 .step_box h3{
        font-size: 1.7rem;
        font-weight: 600;
        margin: 10px 0;
    }
    main#kagome2026 table th{
        width: 98px;
        padding: 10px 0;
        vertical-align: middle;
        font-size: 1.4rem;
    }
    main#kagome2026 .sec3 .kagome2026_entry{
        width: 100%;
        font-size: 1.6rem;
    }
    main#kagome2026 .sec3 .illust1 {
        top: -123px;
        right: 0;
        width: 140px;
        opacity: 0.4;
    }
    main#kagome2026 .sec3 .inner{
        position: relative;
        z-index: 2;
    }
    main#kagome2026 .sec3 .illust2 {
        bottom: -210px;
        width: 120px;
        left: -20px;
        opacity: 0.2;
    }
    main#kagome2026 .sec4 .flex{
        display: block;
    }
    main#kagome2026 .sec4 .flex .box{
        width: 100%;
    }
    main#kagome2026 .sec4 .flex .box .padding {
        padding: 20px;
        padding-top: 4px;
    }
    main#kagome2026 .sec4 .flex .box .ttl {
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 1.8rem;
        margin-top: 6px;
    }
    main#kagome2026 .sec4 .flex .box {
        width: 100%;
        margin-top: 30px;
    }
    main#kagome2026 .sec4 .flex .box .fukidashi{
        margin-bottom: -10px;
    }
    main#kagome2026 dl{
        font-size: 1.3rem;
    }
    main#kagome2026 dd{
        flex: 1;
    }
    main#kagome2026 .sec4 .flex .box .gr_bg{
        margin-top: 15px;
    }
    main#kagome2026 .sec5 .flex{
        display: block;
    }
    main#kagome2026 .sec5 .pass{
        width: 100%;
    }
    main#kagome2026 .sec5 iframe {
        height: 208px;
        width: 100%;
        margin-top: 38px;
    }
    main#kagome2026 .sec5 {
        padding-bottom: 40px;
        padding-top: 36px;
        margin-bottom: 0px;
    }
    main#kagome2026 .sec5 .copy {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    main#kagome2026 .sec3{
        padding: 43px 0;
        margin-top: 70px;
    }
    main#kagome2026 .org_bg .flex .border_bg strong{
       font-size: 2.3rem;
    }
    main#kagome2026 .org_bg .flex .border_bg .btn{
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 20px;
    }

    main#kagome2026 .org_bg{
            margin-top: -10px;
    }
    main#kagome2026 .sec2 .step_box .honbun,main#kagome2026 .sec4 .flex .box .honbun{
        font-size: 1.4rem;
        line-height: 1.6;
    }
    main#kagome2026 .btn_wrap{
        gap: 10px;
    }
}/*SP用設定ここまで*/

/*修正追加20260821*/
a.btn, span.btn {
    /*display: inline-flex;*/
    display: block;
    justify-content: center;
    align-items: center;
}
main#kagome2026 .tensen {
    display: flex;
    justify-content: center;
    /*display: block;
    margin-left: auto;
    margin-right: auto;*/
}



