@charset "UTF-8";
body {
  background-image: url(../image/0_background/0_back_1920x24-25.png); /* 「Noto Sans JP」をWindowsで指定 */ /* 「Noto Sans JP」を使えばWindowsとAndroidでの表示が統一される*/
  /* font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", sans-serif;*/
}
.container {}
/*==================================
　header
===================================*/
header {
  position: relative;
}
header .header {
  /* position: relative;*/
}
/*フォトクレジット*/
header .header .slider p {
  position: absolute;
  bottom: 3.5rem;
  right: 1rem;
  color: #FFF;
  font-size: 0.8rem;
  font-style: italic;
}
/*header .slider .slider-item01 p {
    position: absolute;
    bottom: 3.5rem;
    right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
    font-style: italic;
}
header .slider .slider-item02 p {
	position: absolute;
	bottom: 3.5rem;
	right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
	font-style: italic;
}
header .slider .slider-item03 p {
	position: absolute;
	bottom: 3.5rem;
	right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
	font-style: italic;
}
header .slider .slider-item04 p {
    position: absolute;
    bottom: 3.5rem;
    right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
    font-style: italic;
}
header .slider .slider-item05 p {
	position: absolute;
	bottom: 3.5rem;
	right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
	font-style: italic;
}
header .slider .slider-item06 p {
	position: absolute;
	bottom: 3.5rem;
	right: 1rem;
    color: #FFF;
    font-size: 0.8rem;
	font-style: italic;
}*/
/* 深志26ロゴ */
header .header .logo_mark {
  position: absolute;
  top: 4%;
  left: 4%;
  width: 10%;
  display: grid;
  place-items: center;
  z-index: 10;
}
header .logo {
  margin-bottom: 2rem;
}
header .logo img {
  width: 100%;
  height: auto;
}
header .header h4 {
  /*position: absolute;
  top: 22%;
  left: 6%;*/
  font-family: "Arial Black", Gadget, sans-serif;
  color: red;
  font-weight: bold;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  border-radius: 1.5rem;
  text-shadow: 1px 1px 0px #000;
  margin-left: -2rem;
}
/*.header .logo h2 {
    position: absolute;
    top: 110%;
    left: 3%;
    font-family: "Arial Black", Gadget, sans-serif;
    color: red;
    font-weight: bold;
    font-size: 1.5rem;
    writing-mode: vertical-rl;
    line-height: 2rem;
}*/
header .header h3 {
  position: absolute;
  right: 5rem;
  top: 5rem;
  z-index: 10;
  color: #FFF;
  writing-mode: vertical-rl;
  font-size: 1.7rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  text-shadow: 3px 3px 2px #000;
}

/* ナビゲーション・メニュー */
header #global-nav {
  /*position: absolute;*/
  position: fixed;
  left: 0;
  bottom: 0; /*画面の最下段に位置させる*/
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  z-index: 20;
}
header #global-nav h2 {
  font-size: 0.8rem;
  width: fit-content;
  color: #fff;
  margin-left: 3rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border-radius: 0.8rem;
  border: thin dotted #65A684;
}
header #global-nav ul {
  display: flex;
  margin-left: auto;
  padding-right: clamp(0.5rem, -0.732rem + 5.26vw, 3rem);
}
header #global-nav ul li {
  font-weight: 700;
  font-size: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-right: thin dotted #65A684;
}
header #global-nav ul li:last-child {
  padding-right: 0rem;
  border-right: none;
}
header #global-nav ul li a {
  color: #FFF;
}
/* ナビゲーションの固定 */
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
}
/*==================================================
　ナビメニュー：5-3-1 中心から外に線が伸びる（下部）
===================================*/
.global-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}
.global-menu li.current a, #global-nav li a:hover {
  color: #65A684;
}
.global-menu li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1.5px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .2s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
/*現在地とhoverの設定*/
.global-menu li.current a::after, #global-nav li a:hover::after {
  transform: scale(1.2, 1); /*X方向にスケール拡大*/
}
/*==================================
　.notice
===================================*/
.notice {
  width: 100%;
  display: flex;
}
.notice img {
  width: 100%;
  height: auto;
}
.notice_left {
  width: 16%;
  display: grid;
  place-items: center;
  border: thin solid #fff;
  margin-left: auto;
  border-radius: 0.6rem;
}
.notice_center {
  width: 55%;
  height: auto;
  display: grid;
  place-items: center;
  border: thin solid #fff;
  margin-left: 3%;
  margin-right: 3%;
}
.notice_right {
  width: 16%;
  display: grid;
  place-items: center;
  border: thin solid #fff;
  margin-right: auto;
  border-radius: 0.6rem;
}
/*==================================
　main
===================================*/
main {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1rem;
  text-align: center;
  color: #4d4d4d;
}
main img {
  width: 100%;
  height: auto;
}
/*.main_left //////////////////////////////*/
.main_left {
  width: 16%;
  margin-left: auto;
  /*border: thin solid #fff;*/
}
.left_contents {
  border: thin solid #FFF;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.main_left h3 {
  font-size: 0.9rem;
  font-weight: 700;
  /*letter-spacing: -0.01em;*/
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.3rem;
  margin-bottom: 0.5rem;
  font-family: "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", sans-serif;
}
.main_left img {
  padding-bottom: 0.5rem;
  margin-bottom: 0.3rem;
  border-bottom: thin dotted #000;
  padding-top: 0.2rem;
}
/*main_center //////////////////////////////*/
.main_center {
  width: 55%;
  margin-left: 3%;
  margin-right: 3%;
}
article {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 2%;
  padding-bottom: 0.8%;
  /*text-transform: uppercase;*/
  border-left: thin dotted #4C4C4C;
  border-right: thin dotted #4C4C4C;
  border-bottom: thin dotted #4C4C4C;
}
article .contents {
  display: flex;
}
article p {
  height: 25px;
  display: grid;
  place-items: center;
  color: #FFF;
}
article .photo, .text {
  width: 50%;
  height: auto;
}
article .photo img {
  padding-top: 0.35rem;
}
article .text img {
  padding-top: 0.3rem;
}
/*.colors //////////////////////////////*/
.purple {
  background-image: url(../image/_color-back/purple-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.purple_border {
  border-left: thin dotted #A961D6;
  border-right: thin dotted #A961D6;
  border-bottom: thin dotted #A961D6;
}
.green {
  background-image: url(../image/_color-back/green-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.green_border {
  border-left: thin dotted #65A684;
  border-right: thin dotted #65A684;
  border-bottom: thin dotted #65A684;
}
.brown {
  background-image: url(../image/_color-back/brown-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.brown_border {
  border-left: thin dotted #A66C65;
  border-right: thin dotted #A66C65;
  border-bottom: thin dotted #A66C65;
}
.pink {
  background-image: url(../image/_color-back/pink-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.pink_border {
  border-left: thin dotted #C25DA0;
  border-right: thin dotted #C25DA0;
  border-bottom: thin dotted #C25DA0;
}
.red {
  background-image: url(../image/_color-back/red-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.red_border {
  border-left: thin dotted #C25DA0;
  border-right: thin dotted #C25DA0;
  border-bottom: thin dotted #C25DA0;
}
.violet {
  background-image: url(../image/_color-back/violet-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.violet_border {
  border-left: thin dotted #8585a8;
  border-right: thin dotted #8585a8;
  border-bottom: thin dotted #8585a8;
}
.black {
  background-image: url(../image/_color-back/black-h25px.png);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
}
.black_border {
  border-left: thin dotted #4C4C4C;
  border-right: thin dotted #4C4C4C;
  border-bottom: thin dotted #4C4C4C;
}
/*.main_right //////////////////////////////*/
.main_right {
  width: 16%;
  margin-right: auto;
}
.right_contents {
  border: thin solid #FFF;
  text-align: center;
}
.main_right h3 {
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.3rem;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
}
.main_right h3:first-child {
  margin-top: 0rem;
}
h3 span {
  letter-spacing: -0.25em;
}
.main_right p {
  padding-top: 0.3rem;
  margin-bottom: 0.5rem;
}
.main_right img {
  width: 100%;
  height: auto;
  /* margin-top: 0.8rem;*/
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
/*==================================
　footer
===================================*/
footer {
  background-color: #000;
  color: #FFF;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  line-height: 1.4rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.footer-inner {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  /*gap:8rem;*/
  margin-bottom: 3rem;
}
/*.footer_left //////////////////////////////*/
.footer-left {
  width: 16%;
  margin-left: auto;
  margin-top: 0.5rem;
}
.footer-left img {
  width: 90%;
  height: auto;
}
/*.footer_center //////////////////////////////*/
.footer-center {
  width: 55%;
  margin-left: 3%;
  margin-right: 3%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.footer-center .password {
  width: 100%;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
.footer-center .password .password-inner {
  display: flex;
  margin-top: 1rem;
}
.footer-center .password .photo {
  width: 45%;
}
.footer-center .password img {
  width: 100%;
  height: auto;
  border: medium solid #FFFFFF;
  border-radius: 8px;
}
.password .password-inner .text {
  width: 55%;
}
.footer-center .password p {
  margin-top: 0rem;
  margin-left: 0rem;
  /*padding-right: 1rem;*/
  /*letter-spacing: -0.05em;*/
  /* プロポーショナルメトリクスを有効にする指定 */
  font-feature-settings: "palt"1;
  /* プロポーショナル字形を有効にする */
  /*font-feature-settings: "pwid" 1;*/
}
/*.footer_right //////////////////////////////*/
.footer-right {
  width: 16%;
  margin-right: auto;
  margin-top: 1rem;
}
.toiawase {
  /*font-feature-settings: "palt"1;*/
  font-feature-settings: "pwid"1;
}
.footer-right .toiawase p {
  margin-bottom: 1rem;
}
button {
  cursor: pointer;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  /*font-size: 1rem;*/
}
footer .copyright {
  text-align: center;
  margin-top: 3rem;
}
/*==================================
　#global_nav
===================================*/
@media screen and (max-width:1024px) {
  header .header .logo_mark {
    width: 12%;
  }
  header #global-nav h2 {
    margin-left: 1.2rem;
  }
  header #global-nav h2 {
    margin-left: 1.2rem;
  }
}
/*////////////////////////////////////////////*/
@media screen and (max-width:768px) {
  header .header .logo_mark {
    left: 8%;
    width: 17%;
  }
  header #global-nav h2 {
    font-size: 0.8rem;
    margin-left: 1.5rem;
    text-align: center;
  }
  header #global-nav ul {}
  header #global-nav ul li {
    font-size: 0.78rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/*////////////////////////////////////////////*/
@media screen and (max-width:480px) {
  /* 深志26ロゴ */
  header .logo {
    position: absolute;
    top: 2%;
    left: 5%;
    width: 22%;
  }
  header .header .slider p {
    bottom: 0.3rem;
    right: 0.5rem;
  }
  /* 🍔 ナビゲーション・メニュー */
  header #global-nav {
    position: absolute;
    left: -50%;
    /*left: 0;*/
    top: 10rem;
    width: 50%;
    height: 50%;
    display: block;
    transition: all 1.2s;
    background-color: rgba(0, 0, 0, 0.65);
  }
  /* 🍔 */
  .open, .close {
    display: block;
    z-index: 999;
  }
  .open {
    position: absolute;
    top: -1rem;
    right: 0rem;
    padding-top: 3rem;
    padding-right: 3rem;
    cursor: pointer;
  }
  .close {
    position: absolute;
    top: 0rem;
    right: 0rem;
    padding-top: 3rem;
    padding-right: 3rem;
    cursor: pointer;
  }
  .close {
    display: none;
  }
  input[type="checkbox"]:checked ~ #global-nav {
    left: 0;
  }
  input[type="checkbox"]:checked ~ .back {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  /* 🍔 */
  header #global-nav h2 {
    font-size: 0.9rem;
    line-height: 1.2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.4rem;
    border-radius: 0;
  }
  header #global-nav ul {
    display: block;
    margin-left: 18%;
    padding-top: 0.6rem;
  }
  header #global-nav ul li {
    font-size: 1rem;
    line-height: clamp(2.5rem, -8.214rem + 45.71vw, 5.5rem);
    border-right: none;
  }
  span {
    display: inline-block;
  }
  header .slider p {
    bottom: 1rem;
  }
}