@charset "UTF-8";
/* 2024.1011 Kishimoto */
/* ----------------------------
     カラーズ通信ページ main
------------------------------ */
/*タイトル周り　他ページとデザイン合わせ*/
body main {
	margin: 0 auto;
	padding-top: 150px;
}
.background_boder {
    position: absolute;
    width: 100%;
    top: 50px;
	z-index: -1;
}
.work h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #1A3D48;
}
.barlow-bold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: italic;
}
.work h3 b {
    font-size: 30px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 35px;
    color: #1A3D48;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
body main {
    margin: 0 auto;
    padding-top: 35%;
}
.background_boder {
    position: absolute;
    width: 100%;
    top: 50px;
}
.work h3 small {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    color: #1A3D48;
}
.work h3 b {
    font-size: 23px;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
    padding-left: 10px;
    border-left: 5px solid #f0b643;
    margin-top: 10px;
    margin-bottom: 85px;
    color: #1A3D48;
}
}
/*-------------------------------
 web通信一覧ページ　list.html
--------------------------------*/
.magazine_list_main {
	width: 100%;
	margin: 0 auto;
}
.tittle_section {
	width: 80%;
	margin: 0 auto;
}
.magazine_list {
	width: 80%;
    margin: 5% auto;
    padding: 0;
}
.magazine_text_p {
	text-align: center;
}
.magazine_ul {
	width: 100%;
    margin: 3% auto;
    padding: 0;
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.magazine_li {
    flex-basis: 33%;
    margin: 2% 0;
    padding: 0 2%;
}
.magazine_li img {
	width: 100%;
}
.magazine_number_h4 {
	text-align: center;
	color: #fff;
	background-color: #1A3D48;
	padding: 0.3em;
}
.magazine_issue_p {
	text-align: center;
	padding: 0.3em;
}
/*---3Dで動くリンクボタン --------*/
a.btn-3d-flip {
  display: block;
  width: 95%;
  margin: 8% auto;
  padding: 0;
  -webkit-perspective: 10%;
  perspective: 600px;/*奥行き*/
  text-decoration: none;
  
}
a.btn-3d-flip:hover .btn-3d-flip-box {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg);
}
a.btn-3d-flip.btn-3d-flip2:hover .btn-3d-flip-box2 {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg);
}
.btn-3d-flip-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.btn-3d-flip-box2 {
  position: relative;
  display: block;
  width: 85%;
  height: 100%;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: center;
}
.btn-3d-flip-box-face {
  display: block;
  position: relative;
  width: 100%;
  padding: 0.5em 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 1vw;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.btn-3d-flip-box-face--front {
  background: #eb6100;
}
.btn-3d-flip-box-face--back {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-1px) rotateX(-90deg);
  transform: translateY(-1px) rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background: #dc5b00;
}
.btn-3d-flip-box-face--front2 {
  color: #1a3d48;
  border: 1px solid #1a3d48;
  background: #fff;
  text-align: center;
}
.btn-3d-flip-box-face--back2 {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateX(-1px) rotateY(90deg);
  transform: translateX(-1px) rotateY(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  color: #fff;
  border: 1px solid #f0b643;
  background: #f0b643;
  text-align: center;
}
.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
/*---- 3Dで動くリンクボタン ---*/
a.btn-3d-flip {
	width: 95%;
	margin: 5% auto;
}
.btn-3d-flip-box-face {
	font-size: 4vw;
	padding: 0.4em 0;
}
.magazine_ul {
    width: 100%;
    margin: 3% auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}
}
/*------------------------------------
 Colours通信とは？内容追加 20241119
-------------------------------------*/
.what_is_section {
	width: 80%;
    margin: 5% auto 3% auto;
    padding: 2% 3%;
    display: flex;
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: flex-start;	
	border: 2px solid #1A3D48;
	align-items: center;
	background: rgba(255, 255, 255, 0.7); /* White background with 70% opacity */
}
.what_is_h2 {
	flex-basis: 25%;
	padding: 2% 3% 2% 0;
	border-right: 2px solid #1A3D48;
	border-bottom: none;
	font-size: 1.5vw;
	color: #1A3D48;
}
.what_is_p {
	flex-basis: 75%;
	padding: 0 0 0 3%;
	line-height: 1.5;
	color: #1A3D48;
}
.column_div {
	margin: 3% auto;
	padding: 3% 2%;
	background: rgba(238, 215, 170, 0.4);
}
.column_heading {
	color: #f0b643;
	text-align: center;
	font-weight: 500;
	padding: 0 0 3% 0;
}
.column_p {
	line-height: 1.2;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.what_is_section {
    width: 90%;
    margin: 3% auto 10% auto;
    padding: 3%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border: 2px solid #1A3D48;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
}
.what_is_h2 {
    flex-basis: 100%;
    padding: 2% 3% 2% 0;
	border-right: none;
    border-bottom: 2px solid #1A3D48;
    font-size: 6vw;
    color: #1A3D48;
}
.what_is_p {
    flex-basis: 100%;
    padding: 5% 0 3% 0;
    line-height: 1.5;
    color: #1A3D48;
	font-size: 4.6vw;
}
}