@charset "UTF-8";

html {
    font-size: 62.5%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    background-image: linear-gradient(90deg, #dafbff, #fee9ff);
    color: #000000;
    font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP",sans-serif;
    margin:0;
    padding:0;
}
@font-face {
  font-family: "topfont";
  src: url("../fonts/Vollkorn-Italic.ttf") format("truetype");
  }

@font-face {
  font-family: "myfont";
  src: url("../fonts/Cormorant-Bold.ttf") format("truetype");
  }

@font-face {
  font-family: "26font";
  src: url("../fonts/fleurish.ttf") format("truetype");
  }


@font-face {
  font-family: "25font";
  src: url("../fonts/FlyerLTStd-ExtraBlackCond.otf") format("opentype");
  }


/*---------------------------------
　HEADER
---------------------------------*/
nav{
 padding:5px 0px;
 text-align: center;
 background:#112655;
}
nav ul{
 margin: 0 ;
 padding: 0 ;
}
nav li{
 list-style: none;
 display: inline-block;
 width: 10%;
 min-width: 90px;
 font-family:"Times New Roman",sans-serif;
 font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}
nav li:not(:last-child){
 border-right:1px solid #ffffff;
}
nav a{
 text-decoration: none;
 color: #fee897;
}
nav a.current{
 color: #fee897;
 border-bottom:1px solid #ffffff;
}
nav a:hover{
 color:#fee897;
 border-bottom:1px solid #ffffff;
}



/*---------------------------------
　CONTENTS-2026
---------------------------------*/
/* container */
.wrapper{
    width:100%;
}

.wrapper .container{
    max-width:1000px;
    margin:0px auto;
    padding:20px 0px;
}
/* content */
.wrapper .content {
    margin:20px 0px 50px 0px;
    text-align: center;
}
.parent {
    position: relative;
    width: 100%;
    margin:70px 0px 30px 0px;
    text-align: center;
}
.title-milky {
  font-family: "myfont", "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;;
  font-size: clamp(2.7rem, 5vw, 6.1rem);
  color: #001957;
  text-shadow: 0 1px 2px #ffc753, 0px -2px 1px #ffffff;
  font-weight: bold;
  text-align: center;
}


.parent_02 {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
  margin:20px 0px 30px 0px;
}

.left-spacer {
  width: 50px; 
}

.center-text {
  flex-grow: 1; 
  text-align: center; 
  color:#d817ad;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: normal;
  text-shadow: 0 0 20px #fff, 0 0 10px #d800ff;
}
.midashi {
   color: #1d1dcc;
   font-size: clamp(1.5rem, 4vw, 2rem);
   text-shadow: 0 0 20px #fff, 0 0 10px #045cfd;
}

.fuwafuwa {
  filter: drop-shadow(0 0 0.3rem darkgreen);
  margin-top: 15px;
  width: 102px;
  height: 131px;
  animation: fuwafuwa 3s ease-in-out alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  animation-iteration-count: 3;
  animation-fill-mode: forwards;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.icon-container {
  margin: 20px;
  width: 100%;
  max-width:380px;
  height: 127px;
}
.fade-in-left {
  filter: drop-shadow(0 0 0.3rem palevioletred);
  opacity: 0; 
  transform: translateX(-100px); 
  animation: fadeInLeft 1.5s ease-out forwards; 
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px; 
  padding: 26px;
}

@media (min-width: 769px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); 
  }
}


.airmail-card {
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.4);
  width: 96%;
  height: auto;
  background-color: white;
  border: 10px solid;
  border-image: repeating-linear-gradient(
    45deg,
    #00008b,
    #00008b 10px,
    white 10px,
    white 20px,
    #dc143c 20px,
    #dc143c 30px,
    white 30px,
    white 40px
  ) 10;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
}
.airmail-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
a {
    text-decoration: none;
    font-weight: bold;
}

.heading {
    margin: 0.8em 0 0; 
    font-weight: bold;
    color: #4b3621;
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS 明朝", serif;
    text-align: center;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    border-bottom: 2px dotted #333;
    padding-bottom: 3px;
}


.card-text-tax {
    margin: 0.8em;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #000000;
}

h4 {
  margin: 10;
  padding: 0;
  display: block;
  margin-bottom: 120px;
  font-weight: normal;
  font-family: "26font",sans-serif;
  color: #01118a;
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);  
}
.heading-26 {
  position:relative;
  text-align:center;
}

/*---------------------------------
　CONTENTS_2025
---------------------------------*/
/* container25 */
.wrapper_25{
    width:100%;
    background-image: linear-gradient(0deg, #242121 2%, #0f0f0f 22%, #ffffff 99%);
    border-top: 1px solid #ffef39;
}

.wrapper_25 .container{
    max-width:960px;
    margin:0px auto;
    padding:100px 10px 160px 10px;
}

.heading25 {
  padding: 0.5em 2em;/*上下 左右の余白*/
  color: #000000;/*文字色*/
  font-family: "Times New Roman",sans-serif;
  font-size: clamp(1.4rem, calc(1.25rem + 0.625vw), 1.6rem);
  background: transparent;/*背景透明に*/
}
.inner{
  margin:0px auto;
  text-align: center;
  padding: 80px 0px 60px 0px;  
}

.example25{
  margin:0px auto;
  text-align: center;
  box-shadow: 0 0 3px #b4b4b4;
}

.red25 { 
  padding: 10px;
  font-size: clamp(1.6rem, calc(0.95rem + 0.625vw), 1.8rem);
  color: #f5f5f5;
  text-shadow: 1px 1px 2px black;
}

.font2025 {
   color: #f5f5f5;
   font-family: "25font",sans-serif;
   font-size: clamp(1.8rem, calc(1.25rem + 0.625vw), 2rem);
   text-shadow: 1px 1px 2px black;
}

.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.item {
  margin:0px auto;
  padding: 10px;
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}

p {
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP",'ヒラギノ角ゴシック',serif;
  color: #f5f5f5;
  font-size: clamp(1.4rem, calc(1.25rem + 0.625vw), 1.6rem);
}


.custom-link {
    color: red; 
    font-family: "游ゴシック", YuGothic, sans-serif; 
    font-size: clamp(1.6rem, calc(1.25rem + 0.625vw), 1.8rem);
    font-weight: bold;
    text-decoration: none; 
    text-shadow: 1px 1px 2px #000000;
}
.custom-link:hover {
  color: white;
  text-decoration: underline;
}

/*---------------------------------
　CONTENTS-2024
---------------------------------*/

/* container24 */
.wrapper_24{
    width:100%;
    background-image: linear-gradient(0deg, #f2e9a1, #fbfbfb 87%);
    border-top: 1px solid #ffef39;
}
.wrapper_24 .container{
    max-width:960px;
    margin:0px auto;
    padding:100px 10px; 170px 10px;
}


.heading-24 {
  padding: 0.5em 2em;/*上下 左右の余白*/
  color: #000000;/*文字色*/
  font-family: "Times New Roman",sans-serif;
  font-size: clamp(1.4rem, calc(1.25rem + 0.625vw), 1.6rem);
  background: transparent;/*背景透明に*/
}

.inner24{
  margin:0px auto;
  text-align: center;
  padding: 80px 0px 60px 0px;  
}

.example24{
  margin:0px auto;
  text-align: center;
  box-shadow: 0 0 7px #b4b4b4;
}

.red24 { 
  padding: 16px;
  font-size: clamp(1.6rem, calc(1.95rem + 0.625vw), 1.8rem);
  color: #dc143c;
  text-shadow: 1px 1px 2px #000000;
    
}

.font2024 {
   color: #dc143c;
   text-shadow: 1px 1px 2px white;
   font-family: "游ゴシック", YuGothic, sans-serif; 
   font-size: clamp(2.2rem, calc(1.25rem + 0.625vw), 2.4rem);
   text-shadow: 1px 1px 2px white;
}

#cardlayout-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 2em auto;
    max-width: 960px;
    padding:20px 16px; 120px 16px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

a.card-link {
    text-decoration: none;
}

#cardlayout-wrap img {
    display: block;
    max-width: 100%;
    margin:0px auto;
    height: auto;
    text-align: center;
}

.card-figure {
    margin: 0;
    padding: 10px;
}

.card-title {
    margin: 0.6em 0 0;
    color: #000;
    text-align: center;
    font-size: 1.8em;
}

.card-text-tax {
    margin: 0;
    padding: 1.1em;
    color: #333333;
    font-weight: normal;
}

.card-list {
    margin: 0.8em auto;
    padding: 0;
    width: 96%;
    background: #f5f3e7;
    box-shadow: 1px 5px 8px rgba(0, 0, 0, 1.03);
}

@media all and (min-width: 768px) {
    .card-list {
        margin: 0.5em 0;
        width: calc(96% / 2); 
    }
}

@media all and (min-width: 992px) {
    .card-list {
        width: calc(96% / 4);
}

#cardlayout-wrap::after{
        content: "";
        display: block;
        width: calc(96% / 4);
    }
}

h5 {
  font-family: "Hiragino Sans","Noto Sans JP",'ヒラギノ角ゴシック',serif;
  font-size: clamp(1.4rem, calc(1.25rem + 0.625vw), 1.6rem);
  color: #191970;
  font-weight: normal;
}

/*---------------------------------
　CONTENTS-2023
---------------------------------*/

/* container23 */
.wrapper_23{
    width:100%;
    background-image: linear-gradient(0deg, #a28bcf 1%, #ffffff 99%);
    border-top: 1px solid #ffef39;
}
.wrapper_23 .container{
    max-width:960px;
    margin:0px auto;
    padding:80px 16px; 
}

.heading-23 {
  padding: 0.5em 2em;/*上下 左右の余白*/
  color: #000000;/*文字色*/
  font-family: "Times New Roman",sans-serif;
  font-size: clamp(1.4rem, calc(1.25rem + 0.625vw), 1.6rem);
  background: transparent;/*背景透明に*/
}

.inner23{
  margin:0px auto;
  text-align: center;
  padding: 0.9em 2em;
}

.example23{
  filter: drop-shadow(0 0 0.75rem maroon);
  margin:0px auto;
  text-align: center;
}

.red { 
  padding: 0.7em 1.9em;
  font-size: clamp(1.7rem, calc(1.95rem + 0.625vw), 1.9rem);
  color: #dc143c;
  font-weight: bold;
  text-shadow: 1px 1px 2px white;
}

.kuro {
  text-align: center;
  display: block;
  font-size: clamp(1.2rem, calc(0.95rem + 0.625vw), 1.4rem);
  color: #4b3621;
}


.anni-link {
    color: blue; 
    text-decoration: underline;
    font-family: "游ゴシック", YuGothic, sans-serif; 
    font-size: clamp(1.8rem, calc(0.25rem + 0.625vw), 2.0rem);
}
.anni-link:hover {
  color: #dc143c;
  text-decoration: none;
}

/*---------------------------------
　FOOTER
---------------------------------*/

.footer05 {
 color: #ffffff;
 background-color: #112655;
 border-top: 1px solid #ffc753;
 border-bottom: 1px solid #ffc753;
 padding: 50px 0 30px 0;
}
.footer05 a {
 color: #feffa3;
 text-decoration: none;
 font-weight: normal;
}
.footer05 li a:hover {
 text-decoration: underline;
}

a.hover-underline {
    text-decoration: none; /* 通常時は下線なし */
  }
a.hover-underline:hover {
    text-decoration: underline; /* ホバー時に下線を表示 */
  }

.footer05 .wrap {
 width: 900px;
 margin: 0 auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
}
.footer05 .wrap h3 {
 font-size: clamp(1.0rem, calc(1rem + 0.625vw), 1.5rem);
 font-weight: normal;
 margin: 20px 0 10px 0;
 padding: 0;
 border-bottom: 1px #c4c4c4 solid;
}
.footer05 .wrap p {
 font-size: clamp(1.0rem, calc(0.9rem + 0.625vw), 1.5rem);
 margin: 0;
 padding: 0 0 20px 0;
 text-align: left;
 font-weight: normal;
}
.footer05 .wrap .box {
 width: 22%;
}
.footer05 .wrap .box ul {
 font-size: clamp(1.0rem, 0.95rem + 1.739vw, 1.5rem);
 line-height: 1.55;
 margin: 0;
 padding: 0px 0 20px 0;
 list-style: none;
 font-weight: normal;
}
.footer05 .wrap .copyright {
 width: 100%;
 padding: 50px 0 20px 0;
 text-align: center;
 font-family: "topfont", "Times New Roman",sans-serif;
 color:#e4e4e4;
 font-style: italic;
 font-size: clamp(0.75rem, 0.359rem + 1.739vw, 1.65rem);
 line-height: 1.55;
}

@media only screen and (max-width: 599px) {
.footer05 .wrap {
 width: 100%;
 padding: 0 20px;
 box-sizing: border-box;
}
.footer05 .wrap h3 {
 border: none;
}
.footer05 .wrap .box {
 width: 100%;
}
.footer05 .wrap .box ul {
 border-top: 1px #c4c4c4 solid;
}
.footer05 .wrap .box ul li a {
 display: block;
 padding: 5px 15px;
 border-bottom: 1px #c4c4c4 solid;
}
}

/*---------------------------------
　PAGE-TOP
---------------------------------*/
.c-backToTop {
  z-index: 100;
  position: fixed;
  right: 11px;
  bottom: 61px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}


.c-backToTop a:before {
  position: absolute;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  top: 50%;
  left: 50%;
  display: inline-block;
  background-color: #0510e8;
}

