@charset "UTF-8";
/*
Theme Name: TAKAREN
Description: A theme for TAKAHASHI RENSEN website</a>
Theme URI: https://takaren.co.jp
Author: Skooler Co., Ltd.
Author URI: https://skooler.jp
Version: 1
*/
/*
 * Animations
 */
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slide-in {
  0% {
    margin-left: -100%;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*
 * Typography
 */
@font-face {
  font-family: "takaren-icons";
  src: url("takaren-icons.ttf") format("truetype");
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "YuGothicM", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.5px;
  scroll-padding-top: 120px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}
@media (min-width: 960px) {
  html {
    font-size: calc(14px + 0.0083333333 * (100vw - 960px));
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 18px;
  }
}
/*
 * Common
 */
::selection {
  background: #26BAEE;
  color: #FFFFFF;
  text-shadow: none;
}

body {
  background: #FFFFFF;
  color: #191919;
  min-width: 320px;
}

a {
  color: #009FFD;
  transition: color 0.22s ease-out;
}

a:hover,
a:active {
  color: #03384B;
}

a > img {
  transition: opacity 0.4s ease-out;
}

a:hover > img,
a:active > img {
  opacity: 0.85;
}

h2,
h3,
p,
ul,
ol,
address,
figure,
table {
  margin-bottom: 2.5rem;
}

h2 + h3,
h3 + h4,
p + p,
p + ol,
p + ul,
ol + p,
ul + p {
  margin-top: -1rem;
}

th,
td {
  border: 1px solid #03384B;
  padding: 0.4rem 0.8rem;
}

th {
  background: #E1E1E1;
  white-space: nowrap;
}

em:lang(ja) {
  font-style: normal;
}

figcaption {
  font-size: 85%;
  text-align: center;
}

.content {
  width: 100%;
}

.annotation {
  font-size: 70%;
}

.footnote {
  font-size: 85%;
}

.button,
.button:hover,
.button:active {
  background: #FFFFFF;
  border: 1px solid #191919;
  color: #191919;
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
}

.button:hover,
.button:active {
  border: 1px solid #191919;
  color: #444444;
}

.data-table {
  font-size: 85%;
  overflow-x: scroll;
  white-space: nowrap;
  width: 100%;
}

.data-table thead > tr > th:first-child,
.data-table tbody > tr > th {
  background: none;
  border-left: none;
  border-right: none;
  left: 0;
  position: sticky;
}

.data-table thead > tr > th:first-child::before,
.data-table tbody > tr > th::before {
  background: #E1E1E1;
  border-left: 1px solid;
  border-right: 1px solid;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: -1;
}

.map {
  margin-bottom: 2.5rem;
}

.map > iframe {
  width: 100%;
}

.point {
  background: #F0F0F0;
  position: relative;
}

.point::before {
  background: #DDDDDD;
  content: "Point";
  font-size: 70%;
  left: 0;
  padding: 0.4rem 0.8rem;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translateY(-100%);
}

ul.triangle {
  list-style: none;
}

ul.triangle > li {
  position: relative;
  padding-left: 1.3em;
}

ul.triangle > li:before {
  border-color: transparent transparent transparent #191919;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  content: "";
  height: 0;
  left: 0.2em;
  position: absolute;
  top: 0.5em;
  width: 0;
}

@media (max-width: 767px) {
  .content {
    padding: 2.5rem 30px;
  }
}
@media (min-width: 768px) {
  .content {
    padding: 2.5rem 5rem;
  }
}
/*
 * Header
 */
#header {
  background: #062f87;
  height: 90px;
}

#nav {
  background: #062f87;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9998;
  transition: background-color 0.22s ease-out;
}

#nav > .content {
  align-items: center;
  display: flex;
  height: 90px;
  justify-content: space-between;
  padding-bottom: 0;
  padding-top: 0;
  transition: height 0.22s ease-out;
}

#nav > .content > .logo {
  flex-shrink: 0;
  margin: 0;
}

#nav > .content > .logo > a > img {
  height: 48px;
  transition: height 0.22s ease-out, opacity 0.22s ease-out;
  width: auto;
}

#nav > .content > .logo > a:hover > img {
  opacity: 0.8;
}

#nav > .content > .column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

#nav > .content > .column > h2 {
  margin-bottom: 0;
}

#nav > .content > .column > nav > ul {
  align-items: flex-start;
  display: flex;
}

#nav > .content > .column > nav > ul > li > a {
  align-items: center;
  display: flex;
  height: 50px;
  position: relative;
  text-decoration: none;
}

#nav > .content > .column > nav > ul > li > a[target=_blank]::after {
  content: "\f08e";
  font-family: "takaren-icons";
  margin-left: 0.2rem;
}

@media (max-width: 959px) {
  #nav > .content > .column > input[type=checkbox] {
    position: fixed;
  }
  #nav > .content > .column > h2 > label::after {
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 0 10px;
    color: #FFFFFF;
    content: "＝";
    display: flex;
    font-size: 28px;
    height: 48px;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    width: 48px;
    z-index: 9999;
  }
  #nav > .content > .column > input[type=checkbox]:checked ~ h2 > label::after {
    background: #393E46;
  }
  #nav > .content > .column > nav::before {
    background: #393E46;
    border-radius: 100%;
    content: "";
    display: block;
    height: 200vh;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate(200vw, -200vh);
    transition: transform 0.22s, visibility 0.22s;
    visibility: hidden;
    width: 200vw;
    will-change: transform;
  }
  #nav > .content > .column > input[type=checkbox]:checked ~ nav::before {
    transform: translate(50vw, -50vh);
    visibility: visible;
  }
  #nav > .content > .column > nav a {
    color: #FFFFFF;
  }
  #nav > .content > .column > nav > ul {
    bottom: 0;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.22s ease-out, visibility 0.22s;
    visibility: hidden;
    width: 60vw;
  }
  #nav > .content > .column > input[type=checkbox]:checked ~ nav > ul {
    opacity: 1;
    visibility: visible;
  }
  #nav > .content > .column > nav li {
    font-size: 1.58rem;
    margin-bottom: 0;
  }
  #nav > .content > .column > nav > ul > li.top {
    display: list-item;
  }
  #nav > .content > .column > nav > ul > li > ul > li > a {
    align-items: center;
    display: flex;
    height: 50px;
    position: relative;
    text-decoration: none;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  #nav > .content > .column > nav > ul {
    width: 80vw;
  }
}
@media (min-width: 960px) {
  #nav.sticky {
    background: #062f87;
    position: fixed;
  }
  #nav.sticky:hover {
    background: #062f87;
  }
  #nav.sticky > .content {
    height: 65px;
  }
  #nav > .content > .column > nav > ul {
    justify-content: flex-end;
  }
  #nav > .content > .column > nav > ul > li {
    margin-left: 1.5rem;
    position: relative;
  }
  #nav > .content > .column > nav > ul > li.top {
    display: none;
  }
  #nav > .content > .column > nav > ul > li.language::after {
    content: "\f0ac";
    cursor: pointer;
    font-family: "takaren-icons";
  }
  #nav > .content > .column > nav > ul > li > ul {
    background: rgba(25, 25, 25, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    right: -5rem;
    opacity: 0;
    padding: 0.4rem 0;
    position: absolute;
    top: 100%;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
    visibility: hidden;
  }
  #nav > .content > .column > nav > ul {
    align-items: center;
    display: flex;
  }
  #nav > .content > .column > nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  #nav > .content > .column > nav > ul > li > ul > li {
    white-space: nowrap;
  }
  #nav > .content > .column > nav > ul > li > ul > li > a {
    display: block;
    padding: 0.4rem 0.8rem;
    text-align: center;
  }
  #nav > .content > .column > nav a {
    color: #FFFFFF;
  }
  #nav > .content > .column > nav a:hover,
  #nav > .content > .column > nav a:active {
    color: #A0A0A0;
  }
  #nav > .content > .column > nav > ul > li > ul > li > a:hover {
    background: #444444;
  }
}
#nav input[type=checkbox]:checked ~ .onlineshop {
  display: none;
}

#nav .submenu {
  text-align: left;
}

#nav .submenu li {
  margin-bottom: 0;
}
#nav .submenu li a {
  display: inline-block;
  margin-left: 1.6rem;
}

@media (min-width: 960px) {
  #nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    margin-top: 0;
    text-align: center;
  }
  #nav .submenu li {
    margin-bottom: 0;
  }
  #nav .submenu li a {
    display: inline-block;
    padding: 10px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
  }
  #nav .dropdown:hover .submenu {
    display: inline-block;
  }
}
/*
 * Main
 */
.container > aside {
  background: #F0F0F0;
}

#main {
  padding-bottom: 2.5rem;
}

#main > section > h2 > span {
  display: block;
  font-size: 70%;
  letter-spacing: 0.2em;
  margin-left: 0.2rem;
}

#main > section > .content,
#footer > .content {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

body.home #awards > .content {
  padding-bottom: 5rem;
  padding-top: 0;
}

body.home #service > .content,
body.home #column > .content,
body.home #video > .content,
body.home #info > .content,
body.home #media > .content,
body.home #message > .content,
body.home #calligraphy > .content {
  margin-bottom: 5rem;
  position: relative;
}

body.home #media > .content {
  margin-bottom: 2.5rem;
}

body.home #service > .content::before,
body.home #column > .content::before,
body.home #video > .content::before,
body.home #info > .content::before,
body.home #media > .content::before,
body.home #message > .content::before,
body.home #calligraphy > .content::before {
  bottom: 0;
  box-shadow: 0 2px 150px 0 rgba(0, 0, 0, 0.1);
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
}

body.home #service > .content > section,
body.home #column > .content > section,
body.home #message > .content > section,
body.home #calligraphy > .content > section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

body.home #media > .more {
  margin-bottom: 5rem;
  text-align: center;
}

body:not(.home) #main > section > .content > header,
body:not(.home) #main > article > .content > header,
body:not(.home) #main > article > .content > section:not(:last-child),
body:not(.home) #main > article > .content > section > section,
body.attachment #main > section figure {
  margin-bottom: 2.5rem;
}

body.home #awards > .content,
body:not(.home) #main > article > .content,
body.attachment #main > section > .content {
  margin: 0 auto;
  max-width: 1024px;
}

body:not(.home) #main > article > .content > header > .date {
  margin-bottom: 2.5rem;
}

body:not(.home) #main > section > .content > section > header > h2 {
  margin: 5rem 0 2.5rem;
  text-align: center;
}

body:not(.home) #main > section > .content > section > header > h2 > a {
  color: inherit;
}

#main .contact-button {
  text-align: center;
}

#main > .page {
  padding-top: 2.5rem;
  text-align: center;
}

@media (max-width: 767px) {
  #service,
  #column,
  #video,
  #info,
  #media,
  #message,
  #calligraphy {
    padding: 0 30px;
  }
  #top #message .content {
    padding-left: 0;
    padding-right: 0;
  }
  #top #message .content section p {
    font-size: 16px;
  }
  #service > .content:nth-child(odd)::before,
  #column > .content::before,
  #info > .content::before,
  #message > .content::before {
    left: -30px;
    right: 0;
  }
  #service > .content:nth-child(even)::before,
  #video > .content::before,
  #media > .content::before,
  #calligraphy > .content::before {
    left: 0;
    right: -30px;
  }
}
@media (min-width: 768px) {
  #service,
  #column,
  #video,
  #info,
  #media,
  #message,
  #calligraphy {
    padding: 0 5rem;
  }
  #service > .content > section > figure > img,
  #column > .content > section > figure > img,
  #message > .content > section > figure > img,
  #calligraphy > .content > section > figure > a > img {
    max-height: 392px;
    width: auto;
  }
  #service > .content:nth-child(odd)::before,
  #column > .content::before,
  #info > .content::before,
  #message > .content::before {
    left: -5rem;
    right: 0;
  }
  #service > .content:nth-child(even)::before,
  #video > .content::before,
  #media > .content::before,
  #calligraphy > .content::before {
    left: 0;
    right: -5rem;
  }
  #service > .content:nth-child(odd) > section > figure,
  #calligraphy > .content > section > figure {
    flex: 1;
    margin: 0 0 0 3rem;
    order: 1;
  }
  #service > .content:nth-child(even) > section > figure,
  #column > .content > section > figure {
    flex: 1;
    margin: 0 3rem 0 0;
    max-width: 600px;
  }
  #message > .content > section > figure {
    margin: 0 3rem 0 0;
    max-width: 600px;
  }
  #service > .content > section > .column,
  #column > .content > section > .column,
  #message > .content > section > .column,
  #calligraphy > .content > section > .column {
    flex: 1;
  }
}
/*
 * Main - Jumbotron
 */
#jumbotron {
  margin-bottom: 5rem;
  position: relative;
}

#jumbotron .video {
  display: flex;
  position: relative;
}

#jumbotron .video::after {
  background-color: rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(rgba(0, 0, 0, 0.3) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.3) 30%, transparent 31%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

#jumbotron .video > video {
  height: auto;
  width: 100%;
}

#jumbotron .carousel-item > img {
  width: 100%;
}

#jumbotron > .attention {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: absolute;
}

#jumbotron > .attention > a {
  background: rgba(249, 249, 249, 0.9);
  border: 1px solid #CCC;
  color: #191919;
  font-size: 85%;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  transition: background-color 0.216s ease-out;
}

#jumbotron > .attention > a:hover,
#jumbotron > .attention > a:active {
  background: #FFF;
}

#jumbotron > .slogun {
  position: absolute;
}

#jumbotron > .slogun > p {
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.37px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

#jumbotron > .slogun > p:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  #jumbotron > .attention {
    right: 1rem;
    top: 1rem;
  }
  #jumbotron > .attention > a {
    padding: 0.4rem 0.5rem;
  }
  #jumbotron > .slogun {
    bottom: 2%;
    left: 6%;
  }
  #jumbotron > .slogun > p:first-child {
    font-size: 200%;
  }
  #jumbotron > .slogun > p:last-child {
    font-size: 200%;
  }
}
@media (min-width: 768px) {
  #jumbotron {
    padding: 0 0 5rem 15%;
  }
  #jumbotron > nav {
    background: #191919;
    bottom: 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    width: 50%;
    z-index: -1;
  }
  #jumbotron > nav > a {
    background-image: image-set(url(img/scroll.png) 1x, url(img/scroll@2x.png) 2x);
    background-image: url(img/scroll.png);
    background-position: left top;
    background-repeat: no-repeat;
    display: block;
    height: 136px;
    left: 24px;
    position: absolute;
    top: 35px;
    width: 12px;
  }
  #jumbotron > .attention {
    right: 3rem;
    top: 3rem;
  }
  #jumbotron > .slogun {
    bottom: 7rem;
    left: 20%;
  }
  #jumbotron > .slogun > p:first-child {
    font-size: 280%;
  }
  #jumbotron > .slogun > p:last-child {
    font-size: 240%;
  }
}
/*
 * Main - Awards
 */
#awards {
  padding-top: 150px;
}

#awards > .content {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

/*
 * Main - Informations
 */
#servicelist .pdce {
  padding: 0 40px 68px 40px !important;
}
#servicelist .pdce li {
  width: 100%;
  max-width: 600px;
  display: table;
  margin: 0 auto;
}

#info > .content > ul {
  flex: 1;
  padding: 0;
}

#info > .content > ul > li {
  list-style: none;
  padding: 1rem 0;
  position: relative;
}

#info > .content > ul > li > time {
  display: block;
}

#info > .content > ul > li > a:after {
  content: "";
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: absolute;
  top: 0;
  width: 100%;
}

#info > .content > .more {
  text-align: right;
}

@media (min-width: 768px) {
  #info > .content > ul > li {
    display: flex;
  }
  #info > .content > ul > li > time {
    margin-right: 3rem;
  }
}
/*
 * Main - Glossary
 */
#glossary > .content > nav {
  margin-bottom: 2rem;
}

#glossary > .content > nav > ul {
  display: flex;
  flex-wrap: wrap;
}

#glossary > .content > nav > ul > li:not(:last-child) {
  margin: 0 0.5rem 0.5rem 0;
}

#glossary > .content > nav > ul > li > a {
  background: #F0F0F0;
  border: 1px solid #DDDDDD;
  padding: 0.2rem 0.4rem;
}

#glossary > .content > .columns {
  display: flex;
  flex-wrap: wrap;
}

#glossary > .content > .columns > .column > section {
  margin-bottom: 2.5rem;
}

#glossary > .content > .columns > .column > section > h2 {
  margin-bottom: 1rem;
}

article > .content > header > h2.pronunce {
  font-size: inherit;
}

@media (max-width: 767px) {
  #glossary > .content > .columns > .column {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #glossary > .content > .columns > .column {
    width: 50%;
  }
  #glossary > .content > .columns > .column > section:last-child {
    margin-bottom: 0;
  }
}
/*
 * Main - History
 */
ul.history {
  padding: 0;
}

ul.history > li {
  list-style: none;
  padding-top: 1rem;
}

ul.history > li:not(:last-child) {
  border-bottom: 1px dotted #CCCCCC;
}

ul.history > li > time {
  display: block;
  margin-bottom: 1rem;
}

ul.history > li > ul {
  margin: 0;
  padding: 0;
}

ul.history > li > ul > li {
  list-style: none;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  ul.history > li {
    display: flex;
  }
  ul.history > li > time {
    flex-basis: 14rem;
  }
  ul.history > li > ul {
    flex: 1;
  }
}
/*
 * Main - Search Results
 */
#search-result > .content > h1,
#search-result > .content > article {
  margin-bottom: 2.5rem;
}

#search-result > .content > article > h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#search-result > .content > article > time {
  display: block;
  margin-bottom: 0.5rem;
}

#search-result > .content > article > time,
#search-result > .content > article > p {
  font-size: 85%;
}

#search-result > .content > article > p > .highlight {
  font-weight: bold;
}

/*
 * Breadcrumbs
 */
.breadcrumbs ol > li {
  display: inline-block;
  font-size: 85%;
}

.breadcrumbs ol > li:not(:last-child)::after {
  content: ">";
  margin: 0 0.8rem;
}

/*
 * Cards
 */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1380px;
  gap: 30px 10px;
}

.cards > .card {
  flex: 0 1 100%;
  width: 100%;
  border: solid 1px #eee;
  transition: box-shadow 0.4s ease-out;
  padding: 1rem;
}

.cards > .card > .inner {
  align-items: center;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cards > .card:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
}

.cards > .card > .inner > .mark {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 100%;
  height: 2rem;
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  width: 2rem;
  z-index: 999;
}

.cards > .card > .inner > .mark::before {
  padding-top: 100%;
}

.cards > .card > .inner > .mark > img {
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.cards > .card > .inner > .thumbnail {
  overflow: hidden;
  width: 100%;
}

.cards > .card > .inner > .thumbnail > img {
  backface-visibility: hidden;
  display: block;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition: opacity 0.4s ease-out;
  width: 100%;
}

body.category-calligraphy .cards > .card > .inner > .thumbnail > img {
  max-height: none;
}

body.category-media .cards > .card > .inner > .thumbnail > img {
  object-fit: contain;
}

.cards > .card:hover > .inner > .thumbnail > img {
  opacity: 0.85;
}

.cards > .card > .inner > .summary {
  padding-bottom: 0.5rem;
}

.cards > .card > .inner > .summary > h2,
.cards > .card > .inner > .summary > h3,
.cards > .card > .inner > .summary > time,
.cards > .card > .inner > .summary > p,
.cards > .card > .inner > .summary > a {
  display: block;
  font-size: inherit;
  margin: 0.5rem 1rem 0;
}

.cards > .card > .inner > .summary > h2,
.cards > .card > .inner > .summary > h3,
.cards > .card > .inner > .summary > time,
.cards > .card > .inner > .summary > a {
  text-align: center;
}

.cards > .card > .inner > .summary > h2 > a,
.cards > .card > .inner > .summary > h3 > a,
.cards > .card > .inner > .summary > a.read-more {
  color: #03384B;
  display: block;
  text-align: center;
}

.cards > .card > .inner > .summary > time,
.cards > .card > .inner > .summary > p {
  font-size: 70%;
}

.categories-name {
  background-color: #009FFD;
  display: inline-block;
  padding: 0.3rem 1rem;
  margin: 0 0 0.5rem;
  color: #fff;
  border-radius: 50px;
}

.card-link:after {
  background: transparent;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .cards > .card:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .cards > .card {
    max-width: 50%;
    padding: 1rem;
  }
}
@media (min-width: 1024px) {
  .cards > .card {
    max-width: calc(33.3333333333% - 1rem);
  }
}
/*
 * Tags
 */
body:not(.home) #main > article.interview > .content > header::before {
  background: #FFA700;
  border-color: #FFA700;
  color: #FFF;
  content: "インタビュー";
  display: inline-block;
  font-size: 70%;
  padding: 0.1rem 0.4rem;
}

.cards > .interview > .inner {
  border: 1px solid #FFA700;
}

.cards > .interview > .inner::before {
  background: #FFA700;
  border-color: #FFA700;
  color: #FFF;
  content: "インタビュー";
  font-size: 70%;
  left: 0;
  padding: 0.1rem 0.4rem;
  position: absolute;
  top: 0;
  z-index: 1;
}

/*
 * Search form
 */
.search-form {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.search-form > input[type=text] {
  max-width: 20rem;
  width: 60%;
}

#footer .search-form > input[type=text] {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.2rem 0.4rem;
  transition: background-color 0.22s ease-out;
}

#footer .search-form > input[type=text]:hover,
#footer .search-form > input[type=text]:focus {
  background: rgba(255, 255, 255, 0.18);
}

.search-form > button {
  align-items: center;
  background: transparent;
  border: none;
  color: #03384B;
  display: flex;
  justify-content: center;
  margin-left: 0.4rem;
  transition: color 0.22s ease-out;
}

.search-form > button:hover {
  color: #5D8FA2;
}

#footer .search-form > button {
  color: #CCCCCC;
}

#footer .search-form > button:hover {
  color: #FFFFFF;
}

.search-form > button::before {
  content: "\f002";
  font-family: "takaren-icons";
}

/*
 * Footer
 */
#footer {
  background: #062f87;
  color: #FFFFFF;
  font-size: 90%;
  position: relative;
}

#footer h2,
#footer h3,
#footer h4 {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

#footer address,
#footer p {
  margin-bottom: 1rem;
}

#footer .cert {
  font-size: 70%;
}

#footer .cert > img {
  margin: 0 auto 1rem;
}

#footer .cert > ul {
  padding-left: 1rem;
}

#footer a {
  color: #FFFFFF;
  text-decoration: none;
}

#footer a:hover,
#footer a:active {
  color: #A0A0A0;
}

#footer .contact-button {
  text-align: center;
}

#footer .button {
  background: #062f87;
  border-color: #FFFFFF;
  text-decoration: none;
}

#footer nav ul {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
}

#footer > .content > section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer > .content > section > .company,
#footer > .content > section > nav > section > section {
  margin-bottom: 2.5rem;
}

#footer > .content > section > .company > h2,
#footer > .content > section > nav > section > h3,
#footer > .content > section > nav > section > section > h4 {
  border-bottom: 1px solid #FFFFFF;
}

#footer > .content > section > nav {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer > .content > section > nav > section {
  flex-basis: 100%;
}

#footer > .content > section > nav > section > ul > li > ul {
  margin: 0 0 0 0.5rem;
  position: relative;
}

#footer > .content > section > nav > section > ul > li > ul::before {
  border-left: 1px solid #FFFFFF;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
}

#footer > .content > section > nav > section > ul > li > ul > li {
  padding-left: 1rem;
  position: relative;
}

#footer > .content > section > nav > section > ul > li > ul > li::after {
  border-top: 1px solid #FFFFFF;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0.7em;
  width: 0.5rem;
}

#footer > .content > section > nav > section > ul > li > ul > li:last-child::after {
  background: #062f87;
}

#footer > .content > .copyright {
  font-size: 85%;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  #footer > .content > section > .company {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    /* for IE11 */
    padding-right: 5rem;
  }
  #footer > .content > section > nav {
    flex-basis: 66.6666%;
  }
  #footer > .content > section > nav > section {
    flex-basis: 50%;
    max-width: 50%;
    /* for IE11 */
  }
  #footer > .content > section > nav > section:first-child {
    padding-right: 2.5rem;
  }
  #footer > .content > section > nav > section:last-child {
    padding-left: 2.5rem;
  }
  #footer > .content > .language {
    justify-content: center;
  }
  #footer > .content > .language > ul {
    display: flex;
    justify-content: center;
  }
  #footer > .content > .language > ul::before {
    content: "\f0ac";
    font-family: "takaren-icons";
  }
  #footer > .content > .language > ul > li {
    margin-left: 3rem;
    padding: 0;
  }
  #footer > .content > .move-to {
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #888888;
    bottom: 1.5rem;
    color: #888888;
    display: flex;
    height: 50px;
    justify-content: center;
    position: fixed;
    right: 1.5rem;
    transition: background 0.22s ease-out, border-color 0.22s ease-out, color 0.22s ease-out;
    width: 50px;
    z-index: 999;
  }
  #footer > .content > .move-to:after {
    content: "\f104";
    display: block;
    font-family: "takaren-icons";
    font-size: 38px;
    transform: rotate(180deg);
  }
  #footer > .content > .move-to:hover,
  #footer > .content > .move-to:active {
    background: rgba(255, 255, 255, 0.4);
    border-color: #A0A0A0;
    color: #A0A0A0;
  }
}
/*
 * SDGs
 */
#sdgs > .content > header {
  border-bottom: 4px solid #A0A0A0;
}

#sdgs > .content > header::before {
  background-image: image-set(url(img/sdg_logo_2021.png) 1x, url(img/sdg_logo_2021@2x.png) 2x);
  background-image: url(img/sdg_logo_2021.png);
  background-position: left top;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 31px;
  margin-bottom: 0.24rem;
  width: 247px;
}

#sdgs > .content > section > .work {
  counter-reset: work;
}

#sdgs > .content > section > .work h2 {
  background: #03384B;
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
}

#sdgs > .content > section > .work h3 {
  background: #009FFD;
  color: #FFFFFF;
  margin-left: 1.2rem;
  padding-left: 3rem;
  position: relative;
}

#sdgs > .content > section > .work h3::before {
  align-items: center;
  background: #03384B;
  border-radius: 50%;
  content: counter(work);
  counter-increment: work;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  left: -1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
}

#sdgs > .content > section > .work h3 + p {
  margin-left: 3rem;
}

@media (max-width: 767px) {
  #sdgs > .content > section > .work .wp-block-gallery figure.wp-block-image:not(#individual-image) {
    width: calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px) * 0.83333);
  }
  #sdgs > .content > section > .work h3 {
    padding-left: 2rem;
  }
  #sdgs > .content > section > .work h3::before {
    height: 2.4rem;
    width: 2.4rem;
  }
}
@media (min-width: 768px) {
  #sdgs > .content > section > .work {
    background: #F0F0F0;
  }
  #sdgs > .content > section > .work .wp-block-group {
    padding: 0 2.5rem 2.5rem;
  }
  #sdgs > .content > section > .work h3 {
    font-size: 1.8rem;
  }
}
/*
 * Kyo-print
 */
#kyo-print > .content > section {
  counter-reset: flow;
  padding-left: 3rem;
  position: relative;
}

#kyo-print > .content > section::before {
  background: #F0F0F0;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 0.6rem;
  z-index: -1;
}

#kyo-print > .content > section > h2 {
  background: #F0F0F0;
  margin-left: -3rem;
  padding-left: 3rem;
  position: relative;
}

#kyo-print > .content > section > h2::before {
  align-items: center;
  background: #DDDDDD;
  border-radius: 50%;
  content: counter(flow);
  counter-increment: flow;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  left: -1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
}

#kyo-print > .content > section > h2.service {
  background: #009FFD;
  color: #FFFFFF;
}

#kyo-print > .content > section > h2.service::before {
  background: #03384B;
}

/*
 * Message
 */
@media (max-width: 767px) {
  .founder {
    flex-direction: column-reverse;
  }
  #message > .content > section > .wp-block-columns:not(.founder):not(:last-child) {
    border-bottom: 1px dotted #CCCCCC;
    padding-bottom: 2.5rem;
  }
}
/*
 * FAQ
 */
#faq > .content > section > section {
  padding-top: 2.5rem;
}

#faq > .content > section > section > h3,
#faq > .content > section > section > div > div {
  padding-left: 5rem;
  position: relative;
}

#faq > .content > section > section > h3::before,
#faq > .content > section > section > div > div::before {
  color: #CCC;
  font-family: serif;
  font-size: 3rem;
  left: 0;
  position: absolute;
  top: -1.6rem;
}

#faq > .content > section > section > h3::before {
  content: "Q.";
}

#faq > .content > section > section > div > div::before {
  content: "A.";
}

/*
 * Forms
 */
form .optional,
form .required {
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 85%;
  margin-left: 0.6rem;
  padding: 0.24rem 0.6rem;
  white-space: nowrap;
}

form .optional {
  background: #CCCCCC;
}

form .required {
  background: #FF8080;
}

fieldset {
  margin-bottom: 2rem;
}

label {
  cursor: pointer;
}

legend {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

input[type=email],
input[type=tel],
input[type=text],
input[type=number],
textarea {
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 0.24rem 0.6rem;
  transition: border-color 0.22s;
}

input[type=email]:hover,
input[type=email]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=text]:hover,
input[type=text]:focus,
input[type=number]:hover,
input[type=number]:focus,
textarea:hover,
textarea:focus {
  border-color: #03384B;
}

button {
  border: none;
}

input:focus,
button:focus {
  outline: none;
}

input[aria-invalid=true],
input[aria-invalid=true]:hover,
input[aria-invalid=true]:focus,
textarea[aria-invalid=true],
textarea[aria-invalid=true]:hover,
textarea[aria-invalid=true]:focus {
  border-color: #FF8080;
}

.wpcf7 > .screen-reader-response {
  display: none;
}

.wpcf7-form .item {
  border-bottom: 1px dotted #CCCCCC;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.wpcf7-form .item > .label {
  display: block;
  font-weight: bold;
}

.wpcf7-form .item .wpcf7-radio {
  line-height: 2;
  list-style: none;
  margin: 0;
}

span.wpcf7-list-item {
  display: block;
}

.wpcf7-form .description {
  display: block;
  font-size: 85%;
  margin-top: 0.6rem;
}

.wpcf7-form .send {
  text-align: center;
}

.wpcf7-form .send > input[type=submit] {
  background: #03384B;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  margin-left: 20px;
  /* Make ajax-loader space for centering */
  padding: 0.8rem 2rem;
  transition: background 0.22s ease-out;
}

.wpcf7-form .send > input[type=submit]:hover {
  background: #355F6F;
}

.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=text],
.wpcf7-form textarea {
  width: 100%;
}

.wpcf7-form textarea {
  height: 10rem;
}

.wpcf7-form .alert {
  background: #FF8080;
  border-radius: 10px;
  bottom: -0.6rem;
  color: #FFFFFF;
  content: attr(aria-label);
  font-size: 85%;
  left: 50%;
  padding: 0.24rem 0.6rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.wpcf7-form .alert::before {
  border-bottom: 0.6rem solid #FF8080;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: -0.6rem;
  transform: translateX(-50%);
  width: 0;
}

.wpcf7-response-output {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .wpcf7-form .item > .label {
    margin-bottom: 1rem;
  }
}
@media (min-width: 769px) {
  .wpcf7-form .item {
    display: flex;
  }
  .wpcf7-form .item > .label,
  .wpcf7-form .item > .data {
    padding: 0.24rem 0.6rem;
  }
  .wpcf7-form .item > .label {
    flex: 1 30%;
    text-align: right;
  }
  .wpcf7-form .item > .data {
    flex: 1 70%;
    margin-left: 2rem;
  }
}
/*
 * Pagination
 */
.pagination > .nav-links {
  display: flex;
  justify-content: center;
}

.pagination > .nav-links > .page-numbers {
  align-items: center;
  border-radius: 10px;
  color: #888888;
  display: flex;
  height: 32px;
  justify-content: center;
  margin: 0 10px;
  text-decoration: none;
  width: 32px;
}

.pagination > .nav-links > .current,
.pagination > .nav-links > a.page-numbers:hover {
  background: #EFF2E9;
}

/*
 * Post navigation
 */
.post-navigation > .nav-links > div:not(:last-child) {
  margin-bottom: 5rem;
}

.post-navigation > .nav-links > .nav-previous > a,
.post-navigation > .nav-links > .nav-next > a {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.post-navigation > .nav-links > .nav-previous > a:before,
.post-navigation > .nav-links > .nav-next > a:after {
  content: "\f104";
  display: block;
  font-family: "takaren-icons";
}

.post-navigation > .nav-links > .nav-previous > a:before {
  transform: rotate(90deg);
}

.post-navigation > .nav-links > .nav-next > a:after {
  transform: rotate(-90deg);
}

@media (min-width: 768px) {
  .post-navigation > .nav-links {
    display: flex;
    justify-content: space-between;
  }
  .post-navigation > .nav-links > div:not(:last-child) {
    margin-bottom: 0;
  }
  .post-navigation > .nav-links > .nav-next {
    margin-left: auto;
  }
}
/*
 * WordPress
 */
.wp-block-buttons:not(:last-child),
.wp-block-columns:not(:last-child),
.wp-block-column:not(:last-child),
.wp-block-image:not(:last-child),
.wp-block-media-text:not(:last-child),
.wp-block-group:not(:last-child),
.wp-block-separator:not(:last-child) {
  margin-bottom: 2.5rem;
}

.wp-block-columns.awards {
  flex-wrap: nowrap;
}

.wp-block-columns.awards > .wp-block-column {
  margin-bottom: 0;
}

.wp-block-image.border > img,
.wp-block-image.border > figure > img {
  border: 1px solid #B0B0B0;
}

.wp-block-separator {
  border-bottom: none;
}

.wp-block-quote cite {
  display: block;
  text-align: right;
}

.wp-block-table table {
  margin-bottom: 0;
}

.wp-block-table thead {
  border-bottom: none;
}

.wp-embedded-content {
  width: 100%;
}

.admin-bar #nav {
  top: 46px;
}

.admin-bar #nav > .content > .column > h2 > label::after {
  top: 0;
}

@media (min-width: 601px) {
  .admin-bar #nav > .content > .column > h2 > label::after {
    top: 46px;
  }
}
@media (max-width: 767px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 783px) {
  .admin-bar #nav {
    top: 32px;
  }
  .admin-bar #nav > .content > .column > h2 > label::after {
    top: 32px;
  }
}
.grecaptcha-badge {
  right: -999px !important;
}

.movie {
  height: 100vh;
}
.movie-inner {
  position: relative;
}
.movie-inner video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.movie-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.movie-text--inner {
  padding: 6rem 3rem 3rem;
}
@media (min-width: 783px) {
  .movie-text {
    text-align: center;
    max-width: 520px;
    display: table;
    margin: 0 auto;
  }
}
.movie-text p {
  padding-top: 6rem;
}

#main .top-bg {
  background-color: #f4f4f4;
}
#main .top-bg #media .more {
  text-align: center;
  margin-bottom: 5rem;
}
#main .top-bg .content {
  background-color: white;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  #main .top-bg .content section {
    display: flex;
  }
}
